Diff to HTML by rtfpessoa

Files changed (20) hide show
  1. common/scripted_effects/00_scripted_effects.txt +8516 -11
  2. common/scripted_effects/01_scripted_effects_for_advisors.txt +328 -72
  3. common/scripted_effects/01_scripted_effects_for_diplomacy.txt +107 -4
  4. common/scripted_effects/01_scripted_effects_for_estates.txt +5177 -1051
  5. common/scripted_effects/01_scripted_effects_for_on_actions.txt +3333 -9
  6. common/scripted_effects/01_scripted_effects_for_rulers_heirs_consorts.txt +72 -8
  7. common/scripted_effects/01_scripted_effects_for_simple_bonuses_penalties.txt +452 -0
  8. common/scripted_effects/01_scripted_effects_natives.txt +22 -0
  9. common/scripted_effects/01_scripted_effects_parliament.txt +336 -0
  10. common/scripted_effects/02_scripted_effects_mission_rewards.txt +2805 -0
  11. common/scripted_functions/00_scripted_functions.txt +28 -4
  12. common/scripted_functions/01_scripted_functions_with_effect.txt +0 -2
  13. common/scripted_triggers/00_scripted_triggers.txt +3355 -172
  14. common/scripted_triggers/00_scripted_triggers_FR.txt +8085 -95
  15. common/scripted_triggers/00_scripted_triggers_estates.txt +1006 -11
  16. common/scripted_triggers/00_scripted_triggers_startup_screen.txt +2 -0
  17. common/scripted_triggers/01_scripted_triggers_province_modifiers.txt +26 -2
  18. common/scripted_triggers/02_scripted_triggers_missions.txt +895 -0
  19. common/scripted_triggers/02_scripted_triggers_parliaments.txt +227 -0
  20. common/scripted_triggers/02_scripted_triggers_persian_influence.txt +797 -0
common/scripted_effects/00_scripted_effects.txt CHANGED
@@ -92,6 +92,10 @@ add_loot_from_province_effect = {
92
92
  #$LOOTER$ is the scope of the tag performing the Looting (so for instance owner)
93
93
  add_loot_from_rich_province_general_effect = {
94
94
  add_devastation = 80
95
+ remove_loot = {
96
+ who = $LOOTER$
97
+ amount = 1000
98
+ }
95
99
  if = {
96
100
  limit = {
97
101
  NOT = { development = 18 }
@@ -390,7 +394,7 @@ enact_revolution_effect = {
390
394
  }
391
395
  }
392
396
  hidden_effect = {
393
- exile_ruler_as = ruler_of_france
397
+ exile_ruler_as = { name = ruler_of_france }
394
398
  }
395
399
  }
396
400
  else = {
@@ -416,6 +420,11 @@ enact_revolution_effect = {
416
420
  clr_country_flag = revolution_disaster_immediate_revolution
417
421
  }
418
422
  set_country_flag = revolutionary_republic_flag
423
+
424
+ if = {
425
+ limit = { tag = FRA has_dlc = "Domination" }
426
+ swap_non_generic_missions = yes
427
+ }
419
428
  }
420
429
 
421
430
  #province scope
@@ -779,11 +788,16 @@ restore_country_name_effect = {
779
788
 
780
789
  #Used to clone the nation when forming a colonial tag.
781
790
  restore_old_nation_on_formation_effect = {
782
- custom_tooltip = loses_old_world_provs_tt
791
+ if = {
792
+ limit = {
793
+ NOT = { is_former_colonial_nation = yes }
794
+ }
795
+ custom_tooltip = loses_old_world_provs_tt
796
+ }
783
797
  hidden_effect = {
784
798
  if = {
785
799
  limit = {
786
- NOT = { is_former_colonial_nation = yes }
800
+ has_country_flag = was_not_former_colonial_nation
787
801
  }
788
802
  every_province = {
789
803
  limit = {
@@ -798,6 +812,7 @@ restore_old_nation_on_formation_effect = {
798
812
  remove_core = ROOT
799
813
  }
800
814
  release = event_target:old_tag_target
815
+ event_target:old_tag_target = { swap_non_generic_missions = yes }
801
816
  ROOT = { set_country_flag = old_world_to_new_world_flag }
802
817
  ROOT = { set_country_flag = no_colonial_nations }
803
818
  every_subject_country = {
@@ -814,7 +829,12 @@ restore_old_nation_on_formation_effect = {
814
829
  }
815
830
  every_subject_country = {
816
831
  limit = {
817
- is_subject_of_type = colony
832
+ OR = {
833
+ is_subject_of_type = colony
834
+ is_subject_of_type = crown_colony
835
+ is_subject_of_type = private_enterprise
836
+ is_subject_of_type = self_governing_colony
837
+ }
818
838
  }
819
839
  ROOT = { inherit = PREV }
820
840
  }
@@ -951,11 +971,11 @@ restore_old_nation_on_formation_effect = {
951
971
  }
952
972
  else_if = {
953
973
  limit = {
954
- has_reform = prussian_monarchy
974
+ has_reform = prussian_monarchy_base
955
975
  }
956
976
  event_target:old_tag_target = {
957
977
  change_government = monarchy
958
- add_government_reform = prussian_monarchy
978
+ add_government_reform = prussian_monarchy_base
959
979
  #set_legacy_government = prussian_monarchy_legacy
960
980
  define_ruler = {
961
981
  dynasty = ROOT
@@ -1218,7 +1238,7 @@ change_government_to_republic = {
1218
1238
  NOT = { government = republic }
1219
1239
  }
1220
1240
  change_government = republic
1221
- lose_reforms = 2
1241
+ change_government_reform_progress = -200
1222
1242
  }
1223
1243
  }
1224
1244
 
@@ -1232,11 +1252,11 @@ change_government_to_monarchy = {
1232
1252
  government = republic
1233
1253
  }
1234
1254
  change_government = monarchy
1235
- lose_reforms = 4
1255
+ change_government_reform_progress = -400
1236
1256
  }
1237
1257
  else = {
1238
1258
  change_government = monarchy
1239
- lose_reforms = 2
1259
+ change_government_reform_progress = -200
1240
1260
  }
1241
1261
  }
1242
1262
  }
@@ -1251,11 +1271,8496 @@ change_government_to_theocracy = {
1251
1271
  government = republic
1252
1272
  }
1253
1273
  change_government = theocracy
1254
- lose_reforms = 4
1274
+ change_government_reform_progress = -400
1255
1275
  }
1256
1276
  else = {
1257
1277
  change_government = theocracy
1258
- lose_reforms = 2
1278
+ change_government_reform_progress = -200
1279
+ }
1280
+ }
1281
+ }
1282
+
1283
+ change_government_to_tribal = {
1284
+ if = {
1285
+ limit = {
1286
+ NOT = { government = tribal }
1287
+ }
1288
+ change_government = tribal
1289
+ change_government_reform_progress = -800
1290
+ }
1291
+ }
1292
+
1293
+ add_ruler_personality_ancestor = {
1294
+ # key = personality to test again
1295
+ if = {
1296
+ limit = {
1297
+ has_dlc = "Leviathan"
1298
+ religion = totemism
1299
+ }
1300
+ add_ruler_personality = ancestor_$key$_personality
1301
+ }
1302
+ else = {
1303
+ add_ruler_personality = $key$_personality
1304
+ }
1305
+ }
1306
+
1307
+ add_heir_personality_ancestor = {
1308
+ # key = personality to test again
1309
+ if = {
1310
+ limit = {
1311
+ has_dlc = "Leviathan"
1312
+ religion = totemism
1313
+ }
1314
+ add_heir_personality = ancestor_$key$_personality
1315
+ }
1316
+ else = {
1317
+ add_heir_personality = $key$_personality
1318
+ }
1319
+ }
1320
+
1321
+ add_queen_personality_ancestor = {
1322
+ # key = personality to test again
1323
+ if = {
1324
+ limit = {
1325
+ has_dlc = "Leviathan"
1326
+ religion = totemism
1327
+ }
1328
+ add_queen_personality = ancestor_$key$_personality
1329
+ }
1330
+ else = {
1331
+ add_queen_personality = $key$_personality
1332
+ }
1333
+ }
1334
+
1335
+ remove_ruler_personality_ancestor = {
1336
+ # key = personality to test again
1337
+ if = {
1338
+ limit = {
1339
+ has_dlc = "Leviathan"
1340
+ religion = totemism
1341
+ }
1342
+ remove_ruler_personality = ancestor_$key$_personality
1343
+ }
1344
+ else = {
1345
+ remove_ruler_personality = $key$_personality
1346
+ }
1347
+ }
1348
+
1349
+ remove_heir_personality_ancestor = {
1350
+ # key = personality to test again
1351
+ if = {
1352
+ limit = {
1353
+ has_dlc = "Leviathan"
1354
+ religion = totemism
1355
+ }
1356
+ remove_heir_personality = ancestor_$key$_personality
1357
+ }
1358
+ else = {
1359
+ remove_heir_personality = $key$_personality
1360
+ }
1361
+ }
1362
+
1363
+ remove_queen_personality_ancestor = {
1364
+ # key = personality to test again
1365
+ if = {
1366
+ limit = {
1367
+ has_dlc = "Leviathan"
1368
+ religion = totemism
1369
+ }
1370
+ remove_queen_personality = ancestor_$key$_personality
1371
+ }
1372
+ else = {
1373
+ remove_queen_personality = $key$_personality
1374
+ }
1375
+ }
1376
+
1377
+ #The three effects below are used for setting a great project to exact the tier
1378
+ #I tried to combine the three effects into one single scripted effect, but I couldn't figure a way out to do the effect without having to do a lot of custom tooltip
1379
+ #Sets monument tier 1 (has no effect if the monument is tier 1 or higher)
1380
+ #Province scope
1381
+ set_great_project_tier_1 = {
1382
+ if = {
1383
+ limit = {
1384
+ has_dlc = "Leviathan"
1385
+ }
1386
+ if = {
1387
+ limit = {
1388
+ has_great_project = { #Asks the EXACT tier unlike other triggers
1389
+ type = $type$
1390
+ tier = 0
1391
+ }
1392
+ }
1393
+ add_great_project_tier = {
1394
+ type = $type$
1395
+ tier = 1
1396
+ }
1397
+ }
1398
+ else = {
1399
+ random_list = {
1400
+ 1 = { add_base_tax = 2 }
1401
+ 1 = { add_base_production = 2 }
1402
+ 1 = { add_base_manpower = 2 }
1403
+ }
1404
+ }
1405
+ }
1406
+ else = {
1407
+ add_base_tax = 1
1408
+ add_base_production = 1
1409
+ add_base_manpower = 1
1410
+ }
1411
+ }
1412
+
1413
+ #Sets monument tier 2 (has no effect if the monument is tier 2 or higher)
1414
+ #Province scope
1415
+ set_great_project_tier_2 = {
1416
+ if = {
1417
+ limit = {
1418
+ has_dlc = "Leviathan"
1419
+ }
1420
+ if = {
1421
+ limit = {
1422
+ has_great_project = {
1423
+ type = $type$
1424
+ tier = 2
1425
+ }
1426
+ }
1427
+ random_list = {
1428
+ 1 = { add_base_tax = 4 }
1429
+ 1 = { add_base_production = 4 }
1430
+ 1 = { add_base_manpower = 4 }
1431
+ }
1432
+ }
1433
+ if = {
1434
+ limit = {
1435
+ has_great_project = {
1436
+ type = $type$
1437
+ tier = 1
1438
+ }
1439
+ NOT = {
1440
+ has_great_project = {
1441
+ type = $type$
1442
+ tier = 2
1443
+ }
1444
+ }
1445
+ }
1446
+ add_great_project_tier = {
1447
+ type = $type$
1448
+ tier = 1
1449
+ }
1450
+ random_list = {
1451
+ 1 = { add_base_tax = 2 }
1452
+ 1 = { add_base_production = 2 }
1453
+ 1 = { add_base_manpower = 2 }
1454
+ }
1455
+ }
1456
+ if = {
1457
+ limit = {
1458
+ has_great_project = { #Asks the EXACT tier unlike other triggers
1459
+ type = $type$
1460
+ tier = 0
1461
+ }
1462
+ NOT = {
1463
+ has_great_project = {
1464
+ type = $type$
1465
+ tier = 1
1466
+ }
1467
+ }
1468
+ }
1469
+ add_great_project_tier = {
1470
+ type = $type$
1471
+ tier = 2
1472
+ }
1473
+ }
1474
+ }
1475
+ else = {
1476
+ add_base_tax = 1
1477
+ add_base_production = 1
1478
+ add_base_manpower = 1
1479
+ }
1480
+ }
1481
+
1482
+ #Sets monument tier 3 (has no effect if the monument is tier 3 or higher)
1483
+ #Province scope
1484
+ set_great_project_tier_3 = {
1485
+ if = {
1486
+ limit = {
1487
+ has_dlc = "Leviathan"
1488
+ }
1489
+ if = {
1490
+ limit = {
1491
+ has_great_project = {
1492
+ type = $type$
1493
+ tier = 3
1494
+ }
1495
+ }
1496
+ random_list = {
1497
+ 1 = { add_base_tax = 6 }
1498
+ 1 = { add_base_production = 6 }
1499
+ 1 = { add_base_manpower = 6 }
1500
+ }
1501
+ }
1502
+ if = {
1503
+ limit = {
1504
+ has_great_project = {
1505
+ type = $type$
1506
+ tier = 2
1507
+ }
1508
+ NOT = {
1509
+ has_great_project = {
1510
+ type = $type$
1511
+ tier = 3
1512
+ }
1513
+ }
1514
+ }
1515
+ add_great_project_tier = {
1516
+ type = $type$
1517
+ tier = 1
1518
+ }
1519
+ random_list = {
1520
+ 1 = { add_base_tax = 4 }
1521
+ 1 = { add_base_production = 4 }
1522
+ 1 = { add_base_manpower = 4 }
1523
+ }
1524
+ }
1525
+ if = {
1526
+ limit = {
1527
+ has_great_project = {
1528
+ type = $type$
1529
+ tier = 1
1530
+ }
1531
+ NOT = {
1532
+ has_great_project = {
1533
+ type = $type$
1534
+ tier = 2
1535
+ }
1536
+ }
1537
+ }
1538
+ add_great_project_tier = {
1539
+ type = $type$
1540
+ tier = 2
1541
+ }
1542
+ random_list = {
1543
+ 1 = { add_base_tax = 2 }
1544
+ 1 = { add_base_production = 2 }
1545
+ 1 = { add_base_manpower = 2 }
1546
+ }
1547
+ }
1548
+ if = {
1549
+ limit = {
1550
+ has_great_project = { #Asks the EXACT tier unlike other triggers
1551
+ type = $type$
1552
+ tier = 0
1553
+ }
1554
+ NOT = {
1555
+ has_great_project = {
1556
+ type = $type$
1557
+ tier = 1
1558
+ }
1559
+ }
1560
+ }
1561
+ add_great_project_tier = {
1562
+ type = $type$
1563
+ tier = 3
1564
+ }
1565
+ }
1566
+ }
1567
+ else = {
1568
+ add_base_tax = 2
1569
+ add_base_production = 2
1570
+ add_base_manpower = 2
1571
+ }
1572
+ }
1573
+
1574
+ #Country effect
1575
+ create_colony_mission_reward = {
1576
+ if = {
1577
+ limit = {
1578
+ $province$ = {
1579
+ is_empty = yes
1580
+ }
1581
+ }
1582
+ $province$ = {
1583
+ add_siberian_construction = 400
1584
+ }
1585
+ if = {
1586
+ limit = {
1587
+ has_age_ability = ab_colony_boost_development
1588
+ }
1589
+ $province$ = {
1590
+ add_base_tax = 1
1591
+ add_base_production = 1
1592
+ add_base_manpower = 1
1593
+ }
1594
+ }
1595
+ }
1596
+ else_if = {
1597
+ limit = {
1598
+ owns = $province$
1599
+ }
1600
+ $province$ = {
1601
+ add_base_tax = 1
1602
+ add_base_production = 1
1603
+ add_base_manpower = 1
1604
+ }
1605
+ }
1606
+ else_if = {
1607
+ limit = {
1608
+ NOT = { is_permanent_claim = $province$ }
1609
+ }
1610
+ add_permanent_claim = $province$
1611
+ }
1612
+ }
1613
+
1614
+ #Country effect
1615
+ seize_empty_province_effect = {
1616
+ if = {
1617
+ limit = {
1618
+ $province$ = {
1619
+ is_empty = yes
1620
+ }
1621
+ }
1622
+ $province$ = {
1623
+ cede_province = ROOT
1624
+ add_core = ROOT
1625
+ }
1626
+ }
1627
+ else_if = {
1628
+ limit = { NOT = { owns_or_non_sovereign_subject_of = $province$ } }
1629
+ add_core = $province$
1630
+ }
1631
+ else = {
1632
+ $province$ = {
1633
+ add_base_tax = 1
1634
+ add_base_production = 1
1635
+ add_base_manpower = 1
1636
+ }
1637
+ }
1638
+ }
1639
+
1640
+ #Provine effect
1641
+ create_colony_mission_reward_province = {
1642
+ if = {
1643
+ limit = {
1644
+ is_empty = yes
1645
+ }
1646
+ add_siberian_construction = 400
1647
+ if = {
1648
+ limit = {
1649
+ $country$ = {
1650
+ has_age_ability = ab_colony_boost_development
1651
+ }
1652
+ }
1653
+ add_base_tax = 1
1654
+ add_base_production = 1
1655
+ add_base_manpower = 1
1656
+ }
1657
+ }
1658
+ else_if = {
1659
+ limit = {
1660
+ owned_by = $country$
1661
+ }
1662
+ add_base_tax = 1
1663
+ add_base_production = 1
1664
+ add_base_manpower = 1
1665
+ }
1666
+ else_if = {
1667
+ limit = {
1668
+ NOT = { is_permanent_claim = $country$ }
1669
+ }
1670
+ add_permanent_claim = $country$
1671
+ }
1672
+ }
1673
+
1674
+ #Province effect
1675
+ remove_random_development = {
1676
+ if = {
1677
+ limit = {
1678
+ base_tax = 2
1679
+ base_production = 2
1680
+ base_manpower = 2
1681
+ }
1682
+ random_list = {
1683
+ 33 = {
1684
+ add_base_tax = -1
1685
+ }
1686
+ 33 = {
1687
+ add_base_production = -1
1688
+ }
1689
+ 33 = {
1690
+ add_base_manpower = -1
1691
+ }
1692
+ }
1693
+ }
1694
+ else_if = {
1695
+ limit = {
1696
+ base_tax = 2
1697
+ base_production = 2
1698
+ }
1699
+ random_list = {
1700
+ 50 = {
1701
+ add_base_tax = -1
1702
+ }
1703
+ 50 = {
1704
+ add_base_production = -1
1705
+ }
1706
+ }
1707
+ }
1708
+ else_if = {
1709
+ limit = {
1710
+ base_tax = 2
1711
+ base_manpower = 2
1712
+ }
1713
+ random_list = {
1714
+ 50 = {
1715
+ add_base_tax = -1
1716
+ }
1717
+ 50 = {
1718
+ add_base_manpower = -1
1719
+ }
1720
+ }
1721
+ }
1722
+ else_if = {
1723
+ limit = {
1724
+ base_manpower = 2
1725
+ base_production = 2
1726
+ }
1727
+ random_list = {
1728
+ 50 = {
1729
+ add_base_manpower = -1
1730
+ }
1731
+ 50 = {
1732
+ add_base_production = -1
1733
+ }
1734
+ }
1735
+ }
1736
+ else_if = {
1737
+ limit = {
1738
+ base_tax = 2
1739
+ }
1740
+ add_base_tax = -1
1741
+ }
1742
+ else_if = {
1743
+ limit = {
1744
+ base_production = 2
1745
+ }
1746
+ add_base_production = -1
1747
+ }
1748
+ else_if = {
1749
+ limit = {
1750
+ base_manpower = 2
1259
1751
  }
1752
+ add_base_manpower = -1
1753
+ }
1754
+ }
1755
+
1756
+ #Country effect
1757
+ mal_add_disaster_stability = {
1758
+ custom_tooltip = mal_add_disaster_stability_tt
1759
+ hidden_effect = {
1760
+ if = {
1761
+ limit = {
1762
+ has_disaster = decline_of_mali
1763
+ }
1764
+ if = {
1765
+ limit = { NOT = { stability = 3 } }
1766
+ add_stability = 1
1767
+ }
1768
+ else = {
1769
+ add_adm_power = 50
1770
+ }
1771
+ }
1772
+ }
1773
+ }
1774
+
1775
+ #Country effect
1776
+ add_inflation_scaled_to_trade = {
1777
+ [[custom_tooltip]
1778
+ custom_tooltip = $custom_tooltip$
1779
+ ]
1780
+ #custom_tooltip = add_inflation_scaled_to_trade_tt #Make sure to define an own custom tooltip for telling how much inflation per trade percantage should be given
1781
+ hidden_effect = {
1782
+ export_to_variable = {
1783
+ which = trade_income_variable
1784
+ value = trigger_value:trade_income_percentage
1785
+ }
1786
+ multiply_variable = {
1787
+ which = trade_income_variable
1788
+ value = 100
1789
+ }
1790
+ multiply_variable = {
1791
+ which = trade_income_variable
1792
+ value = $inflation$
1793
+ }
1794
+ while = {
1795
+ limit = {
1796
+ check_variable = {
1797
+ which = trade_income_variable
1798
+ value = 1
1799
+ }
1800
+ }
1801
+ add_inflation = 1
1802
+ subtract_variable = {
1803
+ which = trade_income_variable
1804
+ value = 1
1805
+ }
1806
+ }
1807
+ multiply_variable = {
1808
+ which = trade_income_variable
1809
+ value = 100
1810
+ }
1811
+ while = {
1812
+ limit = {
1813
+ check_variable = {
1814
+ which = trade_income_variable
1815
+ value = 1
1816
+ }
1817
+ }
1818
+ add_inflation = 0.01
1819
+ subtract_variable = {
1820
+ which = trade_income_variable
1821
+ value = 1
1822
+ }
1823
+ }
1824
+ }
1825
+ }
1826
+
1827
+ #Country "effect"
1828
+ mal_determine_offer_acceptance = {
1829
+ if = {
1830
+ limit = {
1831
+ mal_will_accept_offer = {
1832
+ province = $province$
1833
+ }
1834
+ }
1835
+ $province$ = {
1836
+ owner = {
1837
+ custom_tooltip = mal_will_accept_offer
1838
+ }
1839
+ }
1840
+ }
1841
+ else_if = {
1842
+ limit = {
1843
+ mal_very_highly_to_accept_offer = {
1844
+ province = $province$
1845
+ }
1846
+ }
1847
+ $province$ = {
1848
+ owner = {
1849
+ custom_tooltip = mal_will_probably_accept_offer
1850
+ }
1851
+ }
1852
+ }
1853
+ else_if = {
1854
+ limit = {
1855
+ mal_might_or_might_not_accept_offer = {
1856
+ province = $province$
1857
+ }
1858
+ }
1859
+ $province$ = {
1860
+ owner = {
1861
+ custom_tooltip = mal_could_accept_offer
1862
+ }
1863
+ }
1864
+ }
1865
+ else_if = {
1866
+ limit = {
1867
+ mal_very_likely_to_not_accept_offer = {
1868
+ province = $province$
1869
+ }
1870
+ }
1871
+ $province$ = {
1872
+ owner = {
1873
+ custom_tooltip = mal_will_probably_not_accept_offer
1874
+ }
1875
+ }
1876
+ }
1877
+ else_if = {
1878
+ limit = {
1879
+ mal_will_never_accept_offer = {
1880
+ province = $province$
1881
+ }
1882
+ }
1883
+ $province$ = {
1884
+ owner = {
1885
+ custom_tooltip = mal_will_naver_accept_offer
1886
+ }
1887
+ }
1888
+ }
1889
+ else = {
1890
+ $province$ = {
1891
+ owner = {
1892
+ custom_tooltip = mal_offer_outcome_unkonwn
1893
+ }
1894
+ }
1895
+ }
1896
+ }
1897
+
1898
+ #Country effect
1899
+ ##########################################################
1900
+ # Supports following privileges
1901
+ # estate_burghers_hydraulic_rights
1902
+ # estate_nobles_cawa_peace_keepers
1903
+ # estate_nobles_cawa_offensive_fighters
1904
+ # estate_burghers_control_over_the_mint
1905
+ # estate_dhimmi_guarantee_of_traditions
1906
+ # estate_church_yakobs_churches
1907
+ # estate_nobles_grant_power_to_the_bashorun
1908
+ # estate_burghers_forest_expansion
1909
+ # estate_burghers_mountain_expansion
1910
+ # estate_nobles_leidang_conscription
1911
+ # estate_burghers_orthodox_tolerance
1912
+ # estate_church_anti_heresy_act
1913
+ # estate_nobles_religious_conscription
1914
+ # estate_dhimmi_millet_system
1915
+ # estate_burghers_the_new_middle_class
1916
+ # estate_janissary_ottoman_vanguards
1917
+ # estate_nobles_english_copyhold_tenure
1918
+ # estate_burghers_autonomous_trade_companies
1919
+ # estate_nobles_defensive_policy
1920
+ # estate_qizilbash_defensive_policy
1921
+ # estate_ghulams_defensive_policy
1922
+ # estate_nobles_tofangchi_regiment
1923
+ # estate_qizilbash_tofangchi_regiment
1924
+ # estate_ghulams_tofangchi_regiment
1925
+ # estate_nobles_tupchi_artillery_corps
1926
+ # estate_qizilbash_tupchi_artillery_corps
1927
+ # estate_ghulams_tupchi_artillery_corps
1928
+ ##########################################################
1929
+ # When adding new privileges then make sure that a unlock_privilege_$estate_privilege$_tt is defined in the localization
1930
+ # For checking if an estate privilege is unlocked already, use has_unlocked_estate_privilege = { estate_privilege = $estate_privilege$ }
1931
+ # For localization write the following: "Enable the [Root.<Estate Name>] privilege '搂Y<Privilege Name>搂!'."
1932
+ unlock_estate_privilege = {
1933
+ custom_tooltip = unlock_privilege_$estate_privilege$_tt
1934
+ hidden_effect = {
1935
+ set_country_flag = unlocked_privilege_$estate_privilege$
1936
+ }
1937
+ [[modifier_tooltip]
1938
+ custom_tooltip = unlock_estate_privilege_modifier_tooltip_tt
1939
+ tooltip = {
1940
+ add_country_modifier = {
1941
+ name = $modifier_tooltip$
1942
+ duration = -1
1943
+ desc = UNTIL_PRIVILEGE_REVOKED
1944
+ }
1945
+ }
1946
+ ]
1947
+ [[effect_tooltip]
1948
+ custom_tooltip = unlock_estate_privilege_effect_tooltip_tt
1949
+ tooltip = {
1950
+ $effect_tooltip$
1951
+ }
1952
+ ]
1953
+ }
1954
+
1955
+ #Country effect
1956
+ ##########################################################
1957
+ # Supports following merc companies
1958
+ # merc_oyo_cavalry
1959
+ # merc_hakkapeliita_cavalry
1960
+ # merc_prussian_volunteer_army
1961
+ # merc_large_hakkapeliita_cavalry
1962
+ # merc_guerilla_hakkapeliita_cavalry
1963
+ # merc_elite_hakkapeliita_cavalry
1964
+ # merc_schwarze_garde
1965
+ # merc_hessian_jaegerkorps
1966
+ # merc_doppelsoeldner
1967
+ # merc_frisian_free_company
1968
+ # merc_flemish_company
1969
+ # merc_reislaufer
1970
+ # merc_tatar_vanguard
1971
+ ##########################################################
1972
+ # When adding a new merc company then make sure that a unlock_$merc_company$_tt is defined in the localization
1973
+ # For checking if a merc company is unlocked already, use has_unlocked_merc_company = { merc_company = $merc_company$ }
1974
+ # For localization write the following: "Unlock the mercenary company 搂Y<Merc Company>搂! to recruit."
1975
+ unlock_merc_company = {
1976
+ custom_tooltip = unlock_$merc_company$_tt
1977
+ hidden_effect = {
1978
+ set_country_flag = unlocked_$merc_company$
1979
+ }
1980
+ [[free_merc]
1981
+ custom_tooltip = costs_no_army_professionalism
1982
+ ]
1983
+ [[global]
1984
+ custom_tooltip = global_merc_company
1985
+ hidden_effect = {
1986
+ set_global_flag = global_unlocked_$merc_company$
1987
+ }
1988
+ ]
1989
+ }
1990
+
1991
+ #Same as above, but this time it makes a company unavailable
1992
+ #Does not support any merc company yet
1993
+ #lock_merc_company = {
1994
+ # custom_tooltip = lock_$merc_company$_tt
1995
+ # hidden_effect = {
1996
+ # clr_country_flag = unlocked_$merc_company$
1997
+ # }
1998
+ #}
1999
+
2000
+ #Country effect
2001
+ ##########################################################
2002
+ # Supports following church aspects
2003
+ # anglican_aspect
2004
+ # spread_the_book_of_common_prayer
2005
+ ##########################################################
2006
+ # When adding a new unlockable Church Aspect then make sure that a unlock_church_aspect_$church_aspect$_tt is defined in the localization
2007
+ # For checking if a Church Aspect is unlocked already, use has_unlocked_church_aspect = { church_aspect = $church_aspect$ }
2008
+ # For localization write the following: "Unlock the Protestant church aspect '搂Y<Church Aspect>搂!'."
2009
+ unlock_church_aspect = {
2010
+ custom_tooltip = unlock_church_aspect_$church_aspect$_tt
2011
+ hidden_effect = {
2012
+ set_country_flag = unlocked_church_aspect_$church_aspect$
2013
+ }
2014
+ }
2015
+
2016
+ #Country effect
2017
+ ##########################################################
2018
+ # Supports following government reforms
2019
+ # prussian_monarchy_base
2020
+ # prussian_republic_reform
2021
+ # prussian_theocratic_reform
2022
+ # holy_horde_reform
2023
+ # crusading_kingdom_reform
2024
+ # militarized_crusader_order_reform
2025
+ # allotment_system
2026
+ # expanded_devshirme_system_reform
2027
+ # ottoman_siyasah_tax_reform
2028
+ # fiqh_laws_reform
2029
+ # sufism_decree_reform
2030
+ # ottoman_conscription_reform
2031
+ # reformed_ottoman_conscription_reform
2032
+ # mansure_army_reform
2033
+ # janissary_military_reform
2034
+ # standardized_millets_reform
2035
+ # modernized_ottoman_government
2036
+ # reorganized_ottoman_government
2037
+ # russian_empire_reform
2038
+ # great_russian_republic_reform
2039
+ # professional_navy_reform
2040
+ # thalassocracy_reform
2041
+ # governing_senate_reform
2042
+ # enforced_autocracy_reform
2043
+ # holy_synod_reform
2044
+ # strengthened_the_patriarchy_reform
2045
+ # head_of_the_patriarchy_reform
2046
+ # tysyatsky_reform
2047
+ # namestnik_reform
2048
+ # oprichnina_reform
2049
+ # anglican_state_church_reform
2050
+ # english_conciliarism_reform
2051
+ # direct_royal_administration_reform
2052
+ # administration_of_the_parliament_reform
2053
+ # royal_charters_reform
2054
+ # commercial_trade_empire_reform
2055
+ # peters_government_reform
2056
+ # caliphate_reform
2057
+ # caliphate_theocracy_reform
2058
+ # legacy_of_timur_reform
2059
+ # legacy_of_the_safavid_reform
2060
+ # divided_aristocracy_reform
2061
+ ##########################################################
2062
+ # When adding a new government reform then make sure that a unlock_$government_reform$_tt is defined in the localization
2063
+ # For checking if a government reform is unlocked already, use has_unlocked_government_reform = { government_reform = $government_reform$ }
2064
+ # For localization write the following: "Unlock the government reform 搂Y<Government Reform>搂!."
2065
+ unlock_government_reform = {
2066
+ custom_tooltip = unlock_$government_reform$_tt
2067
+ hidden_effect = {
2068
+ set_country_flag = unlocked_$government_reform$
2069
+ }
2070
+ [[tooltip]
2071
+ custom_tooltip = unlock_government_reform_tooltip
2072
+ tooltip = {
2073
+ add_government_reform = $government_reform$
2074
+ }
2075
+ ]
2076
+ }
2077
+
2078
+ #Country effect
2079
+ ##########################################################
2080
+ # Has the localization for the following estates:
2081
+ # estate_brahmins
2082
+ # estate_church
2083
+ # estate_maratha
2084
+ # estate_nobles
2085
+ # estate_burghers
2086
+ # estate_vaisyas
2087
+ # estate_cossacks
2088
+ # estate_nomadic_tribes
2089
+ # estate_dhimmi
2090
+ # estate_jains
2091
+ # estate_rajput
2092
+ # estate_janissaries
2093
+ # estate_eunuchs
2094
+ # estate_qizilbash
2095
+ # estate_ghulams
2096
+ ##########################################################
2097
+ # When adding a new estate then make sure that a unlock_$estate$_tt is defined in the localization
2098
+ # For checking if an Estate is unlocked already, use has_unlocked_estate = { estate = $estate$ }
2099
+ # For localization write the following: "Unlock the 搂Y<Estate>搂! Estate."
2100
+ # Important: this way of unlocking an estate does not give you permanent access to the estate - hence the show_conditions.
2101
+ # For granting permanent access, use "enable_estate_effect"
2102
+ unlock_estate = {
2103
+ custom_tooltip = unlock_$estate$_tt
2104
+ hidden_effect = {
2105
+ set_country_flag = unlocked_$estate$_flag
2106
+ }
2107
+ [[show_conditions]
2108
+ custom_tooltip = is_unavailable_$estate$
2109
+ ]
2110
+ }
2111
+
2112
+ #Country effect
2113
+ ##########################################################
2114
+ # Has the localization for the following estates:
2115
+ # estate_brahmins
2116
+ # estate_church
2117
+ # estate_maratha
2118
+ # estate_nobles
2119
+ # estate_burghers
2120
+ # estate_vaisyas
2121
+ # estate_cossacks
2122
+ # estate_nomadic_tribes
2123
+ # estate_dhimmi
2124
+ # estate_jains
2125
+ # estate_rajput
2126
+ # estate_janissaries
2127
+ # estate_eunuchs
2128
+ # estate_qizilbash
2129
+ # estate_ghulams
2130
+ ##########################################################
2131
+ # Unlocks the estate without any kind of condition
2132
+ enable_estate_effect = {
2133
+ custom_tooltip = mechanic_enables_$estate$_yes
2134
+ hidden_effect = {
2135
+ clr_country_flag = disables_$estate$_flag
2136
+ set_country_flag = enables_$estate$_flag
2137
+ }
2138
+ }
2139
+
2140
+ #Country effect
2141
+ ##########################################################
2142
+ # Has the localization for the following estates:
2143
+ # estate_brahmins
2144
+ # estate_church
2145
+ # estate_maratha
2146
+ # estate_nobles
2147
+ # estate_burghers
2148
+ # estate_vaisyas
2149
+ # estate_cossacks
2150
+ # estate_nomadic_tribes
2151
+ # estate_dhimmi
2152
+ # estate_jains
2153
+ # estate_rajput
2154
+ # estate_janissaries
2155
+ # estate_eunuchs
2156
+ # estate_qizilbash
2157
+ # estate_ghulams
2158
+ ##########################################################
2159
+ # Locks the estate even if they would
2160
+ disable_estate_effect = {
2161
+ custom_tooltip = mechanic_disables_$estate$_yes
2162
+ hidden_effect = {
2163
+ set_country_flag = disables_$estate$_flag
2164
+ clr_country_flag = enables_$estate$_flag
2165
+ }
2166
+ }
2167
+
2168
+ enable_full_ducat_gain_from_selling_crownland = {
2169
+ custom_tooltip = enable_full_ducat_gain_from_selling_crownland_tt
2170
+ set_country_flag = enable_full_ducat_gain_from_selling_crownland_flag
2171
+ }
2172
+
2173
+ can_sell_crownland_to_estates_targeted = {
2174
+ custom_tooltip = can_sell_crownland_to_estates_targeted_tt
2175
+ set_country_flag = can_sell_crownland_to_estates_targeted_flag
2176
+ }
2177
+
2178
+ can_seize_crownland_to_estates_targeted = {
2179
+ custom_tooltip = can_seize_crownland_to_estates_targeted_tt
2180
+ set_country_flag = can_seize_crownland_to_estates_targeted_flag
2181
+ }
2182
+
2183
+ #Country effect
2184
+ #add_increase_same_religion_opinion = {
2185
+ # custom_tooltip = increase_same_religion_opinion_tt
2186
+ # hidden_effect = {
2187
+ # set_country_flag = has_increased_religios_opinion
2188
+ # every_known_country = {
2189
+ # limit = {
2190
+ # OR = {
2191
+ # ROOT = { has_harmonized_with = PREV }
2192
+ # religion = ROOT
2193
+ # }
2194
+ # NOT = {
2195
+ # has_opinion_modifier = {
2196
+ # who = ROOT
2197
+ # modifier = increased_same_religion
2198
+ # }
2199
+ # }
2200
+ # }
2201
+ # add_opinion = {
2202
+ # who = ROOT
2203
+ # modifier = increased_same_religion
2204
+ # }
2205
+ # reverse_add_opinion = {
2206
+ # who = ROOT
2207
+ # modifier = increased_same_religion
2208
+ # }
2209
+ # }
2210
+ # }
2211
+ #}
2212
+
2213
+ #Country effect
2214
+ #remove_increase_same_religion_opinion = {
2215
+ # custom_tooltip = remove_increase_same_religion_opinion_tt
2216
+ # hidden_effect = {
2217
+ # clr_country_flag = has_increased_religios_opinion
2218
+ # every_country = {
2219
+ # limit = {
2220
+ # has_opinion_modifier = {
2221
+ # who = ROOT
2222
+ # modifier = increased_same_religion
2223
+ # }
2224
+ # }
2225
+ # remove_opinion = {
2226
+ # who = ROOT
2227
+ # modifier = increased_same_religion
2228
+ # }
2229
+ # reverse_remove_opinion = {
2230
+ # who = ROOT
2231
+ # modifier = increased_same_religion
2232
+ # }
2233
+ # }
2234
+ # }
2235
+ #}
2236
+
2237
+ #Country effect
2238
+ add_increase_opinion_of_fetishists = {
2239
+ custom_tooltip = add_increase_opinion_of_fetishists_when_same_religion_tt
2240
+ hidden_effect = {
2241
+ set_country_flag = has_increased_fetishist_same_religion_opinion
2242
+ if = {
2243
+ limit = {
2244
+ religion = shamanism
2245
+ }
2246
+ every_known_country = {
2247
+ limit = {
2248
+ religion = shamanism
2249
+ NOT = {
2250
+ has_opinion_modifier = {
2251
+ who = ROOT
2252
+ modifier = increased_fetishist_opinion
2253
+ }
2254
+ }
2255
+ }
2256
+ add_opinion = {
2257
+ who = ROOT
2258
+ modifier = increased_fetishist_opinion
2259
+ }
2260
+ reverse_add_opinion = {
2261
+ who = ROOT
2262
+ modifier = increased_fetishist_opinion
2263
+ }
2264
+ }
2265
+ }
2266
+ }
2267
+ }
2268
+
2269
+ #Country effect - make sure to add an own custom tooltip in form of: "Every 搂Y$religion$搂! country will have their opinion of [Root.GetName] increased by 搂G+50搂!."
2270
+ add_opinion_of_religion = {
2271
+ hidden_effect = {
2272
+ set_country_flag = has_improve_opinion_flag
2273
+ set_country_flag = has_increased_$religion$_opinion
2274
+ every_known_country = {
2275
+ limit = {
2276
+ religion = $religion$
2277
+ NOT = {
2278
+ has_opinion_modifier = {
2279
+ who = ROOT
2280
+ modifier = increased_religion_opinion
2281
+ }
2282
+ }
2283
+ }
2284
+ add_opinion = {
2285
+ who = ROOT
2286
+ modifier = increased_religion_opinion
2287
+ }
2288
+ reverse_add_opinion = {
2289
+ who = ROOT
2290
+ modifier = increased_religion_opinion
2291
+ }
2292
+ }
2293
+ }
2294
+ }
2295
+
2296
+ #Country effect - make sure to add a custom localization like: "Remove the opinion bonus of $religion$ countries for 搂Y[Root.GetName]搂!."
2297
+ remove_religious_opinion_for_scope = {
2298
+ hidden_effect = {
2299
+ clr_country_flag = has_improve_opinion_flag
2300
+ clr_country_flag = has_increased_$religion$_opinion
2301
+ every_country = {
2302
+ limit = {
2303
+ religion = $religion$
2304
+ has_opinion_modifier = {
2305
+ who = ROOT
2306
+ modifier = increased_religion_opinion
2307
+ }
2308
+ }
2309
+ remove_opinion = {
2310
+ who = ROOT
2311
+ modifier = increased_religion_opinion
2312
+ }
2313
+ reverse_remove_opinion = {
2314
+ who = ROOT
2315
+ modifier = increased_religion_opinion
2316
+ }
2317
+ }
2318
+ }
2319
+ }
2320
+
2321
+ #Country effect
2322
+ add_temporary_colonist = {
2323
+ add_country_modifier = {
2324
+ name = temporary_colonist
2325
+ duration = $duration$
2326
+ }
2327
+ custom_tooltip = add_temporary_colonist_tt
2328
+ }
2329
+
2330
+ #Country effect - Mission reward
2331
+ allow_baseline_invite_scholar = {
2332
+ custom_tooltip = allows_every_time_invite_of_$religious_school$
2333
+ hidden_effect = {
2334
+ set_country_flag = can_always_invite_$religious_school$
2335
+ }
2336
+ [[religious_school_modifier]
2337
+ tooltip = {
2338
+ add_country_modifier = {
2339
+ name = $religious_school_modifier$
2340
+ duration = -1
2341
+ }
2342
+ }
2343
+ ]
2344
+ }
2345
+
2346
+ #Country effect
2347
+ #Make sure to make your own custom tooltip for it because parameters can't be given as input. Sadly.
2348
+ transfer_treasury = {
2349
+ #custom_tooltip = transfer_treasury_tt #Transfer 搂Y[$giver$.$variable$.GetValue]搂! Ducats to $Y[$taker$.GetName]搂!.
2350
+ hidden_effect = {
2351
+ $giver$ = {
2352
+ while = {
2353
+ limit = {
2354
+ check_variable = {
2355
+ which = $variable$
2356
+ value = 1
2357
+ }
2358
+ }
2359
+ $taker$ = {
2360
+ add_treasury = 1
2361
+ }
2362
+ add_treasury = -1
2363
+ subtract_variable = {
2364
+ which = $variable$
2365
+ value = 1
2366
+ }
2367
+ }
2368
+ multiply_variable = {
2369
+ which = $variable$
2370
+ value = 100
2371
+ }
2372
+ while = {
2373
+ limit = {
2374
+ check_variable = {
2375
+ which = $variable$
2376
+ value = 1
2377
+ }
2378
+ }
2379
+ $taker$ = {
2380
+ add_treasury = 0.01
2381
+ }
2382
+ add_treasury = -0.01
2383
+ subtract_variable = {
2384
+ which = $variable$
2385
+ value = 1
2386
+ }
2387
+ }
2388
+ }
2389
+ }
2390
+ [[custom_tooltip]
2391
+ custom_tooltip = $custom_tooltip$
2392
+ ]
2393
+ }
2394
+
2395
+ #Country effect
2396
+ enable_propogate_religion_effect = {
2397
+ custom_tooltip = enable_propogate_religion_effect_tt
2398
+ hidden_effect = {
2399
+ set_country_flag = can_use_propagate_religion
2400
+ }
2401
+ }
2402
+
2403
+ #Country effect
2404
+ disable_propogate_religion_effect = {
2405
+ custom_tooltip = disable_propogate_religion_effect_tt
2406
+ hidden_effect = {
2407
+ clr_country_flag = can_use_propagate_religion
2408
+ }
2409
+ }
2410
+
2411
+ #5, #10, #15, #20, #25, #30, #35, #40, #45
2412
+ set_trade_power_requirement_of_propogate_religion = {
2413
+ custom_tooltip = set_trade_power_requirement_of_propogate_religion_$value$_tt
2414
+ hidden_effect = {
2415
+ set_country_flag = $value$_trade_power_for_propogate_religion
2416
+ }
2417
+ }
2418
+
2419
+ #Country effect
2420
+ enable_propogate_religion_immunity = {
2421
+ custom_tooltip = enable_propogate_religion_immunity_tt
2422
+ hidden_effect = {
2423
+ set_country_flag = immunity_against_propogate_religion
2424
+ }
2425
+ }
2426
+
2427
+ #Country effect
2428
+ disable_propogate_religion_immunity = {
2429
+ custom_tooltip = disable_propogate_religion_immunity_tt
2430
+ hidden_effect = {
2431
+ clr_country_flag = immunity_against_propogate_religion
2432
+ }
2433
+ }
2434
+
2435
+ #Country effect
2436
+ enable_propagate_religion_in_abrahamic_provinces= {
2437
+ custom_tooltip = enable_propogate_religion_in_abrahamic_provinces_tt
2438
+ hidden_effect = {
2439
+ set_country_flag = can_propagate_religion_in_abrahamic_provinces
2440
+ }
2441
+ }
2442
+
2443
+ #Country effect
2444
+ disable_propogate_religion_in_abrahamic_provinces = {
2445
+ custom_tooltip = disable_propogate_religion_in_abrahamic_provinces_tt
2446
+ hidden_effect = {
2447
+ clr_country_flag = can_propagate_religion_in_abrahamic_provinces
2448
+ }
2449
+ }
2450
+
2451
+ #Country effect
2452
+ #Supports the following Trading Policies
2453
+ # maximize_profit
2454
+ # hostile_trading
2455
+ # improve_inland_routes
2456
+ # establish_communities
2457
+ # propagate_religion
2458
+ #Makes Trading Policy SELECTABLE
2459
+ unlock_trading_policy = {
2460
+ custom_tooltip = unlock_trading_policy_$policy$_tt
2461
+ hidden_effect = {
2462
+ clr_country_flag = locked_trading_policy_$policy$
2463
+ }
2464
+ }
2465
+ #Makes Trading Policy UNSELECTABLE
2466
+ lock_trading_policy = {
2467
+ custom_tooltip = lock_trading_policy_$policy$_tt
2468
+ hidden_effect = {
2469
+ set_country_flag = locked_trading_policy_$policy$
2470
+ }
2471
+ }
2472
+ #Makes Trading Policy VISIBLE
2473
+ enable_trading_policy = {
2474
+ custom_tooltip = enable_trading_policy_$policy$_tt
2475
+ hidden_effect = {
2476
+ set_country_flag = enabled_trading_policy_$policy$
2477
+ clr_country_flag = disabled_trading_policy_$policy$
2478
+ }
2479
+ }
2480
+ #Makes Trading Policy INVISIBLE
2481
+ disable_trading_policy = {
2482
+ custom_tooltip = disable_trading_policy_$policy$_tt
2483
+ hidden_effect = {
2484
+ set_country_flag = disabled_trading_policy_$policy$
2485
+ clr_country_flag = enabled_trading_policy_$policy$
2486
+ }
2487
+ }
2488
+
2489
+ #Country effect
2490
+ set_prestige_to_zero = {
2491
+ custom_tooltip = set_prestige_to_zero_tt
2492
+ hidden_effect = {
2493
+ add_prestige = -200
2494
+ add_prestige = 100
2495
+ }
2496
+ }
2497
+
2498
+ #Country effect
2499
+ enable_cult_for_heirs = {
2500
+ custom_tooltip = enable_cult_for_heirs_tt
2501
+ hidden_effect = {
2502
+ set_country_flag = enabled_cult_for_heirs
2503
+ if = {
2504
+ limit = {
2505
+ has_heir = yes
2506
+ }
2507
+ country_event = {
2508
+ id = fetishist_flavor.600
2509
+ }
2510
+ }
2511
+ }
2512
+ }
2513
+
2514
+ #Country effect
2515
+ enable_cult_for_heirs_mission = {
2516
+ custom_tooltip = enable_cult_for_heirs_tt
2517
+ hidden_effect = {
2518
+ if = {
2519
+ limit = { has_estate_privilege = estate_church_heir_shrine }
2520
+ remove_estate_privilege = estate_church_heir_shrine
2521
+ }
2522
+ set_country_flag = enabled_cult_for_heirs
2523
+ set_country_flag = heir_cult_through_missions
2524
+ if = {
2525
+ limit = {
2526
+ has_heir = yes
2527
+ }
2528
+ country_event = {
2529
+ id = fetishist_flavor.600
2530
+ }
2531
+ }
2532
+ }
2533
+ }
2534
+
2535
+ #Country effect
2536
+ remove_heir_cult = {
2537
+ trigger_switch = {
2538
+ on_trigger = has_country_modifier
2539
+ junior_yemoja_cult = { remove_country_modifier = junior_yemoja_cult }
2540
+ junior_roog_cult = { remove_country_modifier = junior_roog_cult }
2541
+ junior_nyame_cult = { remove_country_modifier = junior_nyame_cult }
2542
+ junior_cwezi_cult = { remove_country_modifier = junior_cwezi_cult }
2543
+ junior_central_african_ancestor_cult = { remove_country_modifier = junior_central_african_ancestor_cult }
2544
+ junior_mwari_cult = { remove_country_modifier = junior_mwari_cult }
2545
+ junior_enkai_cult = { remove_country_modifier = junior_enkai_cult }
2546
+ junior_waaq_cult = { remove_country_modifier = junior_waaq_cult }
2547
+ junior_zanahary_cult = { remove_country_modifier = junior_zanahary_cult }
2548
+ junior_christianity_cult = { remove_country_modifier = junior_christianity_cult }
2549
+ junior_islam_cult = { remove_country_modifier = junior_islam_cult }
2550
+ junior_buddhism_cult = { remove_country_modifier = junior_buddhism_cult }
2551
+ junior_dharmic_cult = { remove_country_modifier = junior_dharmic_cult }
2552
+ junior_south_central_american_cult = { remove_country_modifier = junior_south_central_american_cult }
2553
+ junior_norse_cult = { remove_country_modifier = junior_norse_cult }
2554
+ junior_jewish_cult = { remove_country_modifier = junior_jewish_cult }
2555
+ junior_zoroastrian_cult = { remove_country_modifier = junior_zoroastrian_cult }
2556
+ }
2557
+ }
2558
+
2559
+ disable_cult_for_heirs = {
2560
+ custom_tooltip = disable_cult_for_heirs_tt
2561
+ hidden_effect = {
2562
+ remove_heir_cult = yes
2563
+ clr_country_flag = enabled_cult_for_heirs
2564
+ }
2565
+ }
2566
+
2567
+ #Country effect
2568
+ unlock_cult_through_selection = {
2569
+ custom_tooltip = unlock_cult_through_selection_tt
2570
+ hidden_effect = {
2571
+ country_event = {
2572
+ id = fetishist_flavor.601
2573
+ }
2574
+ }
2575
+ }
2576
+
2577
+ #Country effect
2578
+ half_estate_privilege_absolutism_loss = {
2579
+ custom_tooltip = half_estate_privilege_absolutism_loss_tt
2580
+ hidden_effect = {
2581
+ set_country_flag = has_halved_absolutism_reduction
2582
+ }
2583
+ }
2584
+
2585
+ #Province effect
2586
+ spawn_country_religious_rebels = {
2587
+ owner = {
2588
+ trigger_switch = {
2589
+ on_trigger = religion
2590
+ anglican = { PREV = { spawn_rebels = { type = anglican_rebels size = $size$ } } }
2591
+ hussite = { PREV = { spawn_rebels = { type = hussite_rebels size = $size$ } } }
2592
+ animism = { PREV = { spawn_rebels = { type = animism_rebels size = $size$ } } }
2593
+ buddhism = { PREV = { spawn_rebels = { type = buddhism_rebels size = $size$ } } }
2594
+ catholic = { PREV = { spawn_rebels = { type = catholic_rebels size = $size$ } } }
2595
+ confucianism = { PREV = { spawn_rebels = { type = confucianism_rebels size = $size$ } } }
2596
+ coptic = { PREV = { spawn_rebels = { type = coptic_rebels size = $size$ } } }
2597
+ hinduism = { PREV = { spawn_rebels = { type = hinduism_rebels size = $size$ } } }
2598
+ ibadi = { PREV = { spawn_rebels = { type = ibadi_rebels size = $size$ } } }
2599
+ inti = { PREV = { spawn_rebels = { type = inti_rebels size = $size$ } } }
2600
+ jewish = { PREV = { spawn_rebels = { type = jewish_rebels size = $size$ } } }
2601
+ mahayana = { PREV = { spawn_rebels = { type = mahayana_rebels size = $size$ } } }
2602
+ mesoamerican_religion = { PREV = { spawn_rebels = { type = maya_rebels size = $size$ } } }
2603
+ nahuatl = { PREV = { spawn_rebels = { type = nahuatl_rebels size = $size$ } } }
2604
+ norse_pagan_reformed = { PREV = { spawn_rebels = { type = norse_pagan_reformed_rebels size = $size$ } } }
2605
+ orthodox = { PREV = { spawn_rebels = { type = orthodox_rebels size = $size$ } } }
2606
+ protestant = { PREV = { spawn_rebels = { type = protestant_rebels size = $size$ } } }
2607
+ reformed = { PREV = { spawn_rebels = { type = reformed_rebels size = $size$ } } }
2608
+ shamanism = { PREV = { spawn_rebels = { type = shamanism_rebels size = $size$ } } }
2609
+ shiite = { PREV = { spawn_rebels = { type = shiite_rebels size = $size$ } } }
2610
+ shinto = { PREV = { spawn_rebels = { type = shinto_rebels size = $size$ } } }
2611
+ sikhism = { PREV = { spawn_rebels = { type = sikhism_rebels size = $size$ } } }
2612
+ sunni = { PREV = { spawn_rebels = { type = sunni_rebels size = $size$ } } }
2613
+ tengri_pagan_reformed = { PREV = { spawn_rebels = { type = tengri_pagan_reformed_rebels size = $size$ } } }
2614
+ totemism = { PREV = { spawn_rebels = { type = totemism_rebels size = $size$ } } }
2615
+ vajrayana = { PREV = { spawn_rebels = { type = vajrayana_rebels size = $size$ } } }
2616
+ zoroastrian = { PREV = { spawn_rebels = { type = zoroastrian_rebels size = $size$ } } }
2617
+ dreamtime = { PREV = { spawn_rebels = { type = dreamtime_rebels size = $size$ } } }
2618
+ }
2619
+ }
2620
+ }
2621
+
2622
+ #Province effect
2623
+ spawn_province_religious_rebels = {
2624
+ trigger_switch = {
2625
+ on_trigger = religion
2626
+ anglican = { spawn_rebels = { type = anglican_rebels size = $size$ } }
2627
+ hussite = { spawn_rebels = { type = hussite_rebels size = $size$ } }
2628
+ animism = { spawn_rebels = { type = animism_rebels size = $size$ } }
2629
+ buddhism = { spawn_rebels = { type = buddhism_rebels size = $size$ } }
2630
+ catholic = { spawn_rebels = { type = catholic_rebels size = $size$ } }
2631
+ confucianism = { spawn_rebels = { type = confucianism_rebels size = $size$ } }
2632
+ coptic = { spawn_rebels = { type = coptic_rebels size = $size$ } }
2633
+ hinduism = { spawn_rebels = { type = hinduism_rebels size = $size$ } }
2634
+ ibadi = { spawn_rebels = { type = ibadi_rebels size = $size$ } }
2635
+ inti = { spawn_rebels = { type = inti_rebels size = $size$ } }
2636
+ jewish = { spawn_rebels = { type = jewish_rebels size = $size$ } }
2637
+ mahayana = { spawn_rebels = { type = mahayana_rebels size = $size$ } }
2638
+ mesoamerican_religion = { spawn_rebels = { type = maya_rebels size = $size$ } }
2639
+ nahuatl = { spawn_rebels = { type = nahuatl_rebels size = $size$ } }
2640
+ norse_pagan_reformed = { spawn_rebels = { type = norse_pagan_reformed_rebels size = $size$ } }
2641
+ orthodox = { spawn_rebels = { type = orthodox_rebels size = $size$ } }
2642
+ protestant = { spawn_rebels = { type = protestant_rebels size = $size$ } }
2643
+ reformed = { spawn_rebels = { type = reformed_rebels size = $size$ } }
2644
+ shamanism = { spawn_rebels = { type = shamanism_rebels size = $size$ } }
2645
+ shiite = { spawn_rebels = { type = shiite_rebels size = $size$ } }
2646
+ shinto = { spawn_rebels = { type = shinto_rebels size = $size$ } }
2647
+ sikhism = { spawn_rebels = { type = sikhism_rebels size = $size$ } }
2648
+ sunni = { spawn_rebels = { type = sunni_rebels size = $size$ } }
2649
+ tengri_pagan_reformed = { spawn_rebels = { type = tengri_pagan_reformed_rebels size = $size$ } }
2650
+ totemism = { spawn_rebels = { type = totemism_rebels size = $size$ } }
2651
+ vajrayana = { spawn_rebels = { type = vajrayana_rebels size = $size$ } }
2652
+ zoroastrian = { spawn_rebels = { type = zoroastrian_rebels size = $size$ } }
2653
+ dreamtime = { spawn_rebels = { type = dreamtime_rebels size = $size$ } }
2654
+ }
2655
+ }
2656
+
2657
+ #Country effect
2658
+ disable_annexation_penalty = {
2659
+ custom_tooltip = disable_annexation_penalty_tt
2660
+ hidden_effect = {
2661
+ set_country_flag = no_integrate_penalty
2662
+ remove_country_modifier = annexers_legacy
2663
+ }
2664
+ }
2665
+
2666
+ #Country effect
2667
+ enable_annexation_penalty = {
2668
+ custom_tooltip = enable_annexation_penalty_tt
2669
+ hidden_effect = {
2670
+ clr_country_flag = no_integrate_penalty
2671
+ }
2672
+ }
2673
+
2674
+ #Country effect
2675
+ enable_cult_switching = {
2676
+ custom_tooltip = enable_cult_switching_tt
2677
+ hidden_effect = {
2678
+ set_country_flag = enabled_cult_switching
2679
+ }
2680
+ }
2681
+ enable_cult_switching_mission = {
2682
+ custom_tooltip = enable_cult_switching_tt
2683
+ hidden_effect = {
2684
+ set_country_flag = enabled_cult_switching_mission
2685
+ }
2686
+ }
2687
+
2688
+ #Country effect
2689
+ disable_cult_switching = {
2690
+ custom_tooltip = disable_cult_switching_tt
2691
+ hidden_effect = {
2692
+ clr_country_flag = enabled_cult_switching
2693
+ }
2694
+ }
2695
+
2696
+ #Country effect
2697
+ enable_development_on_buildings_built = {
2698
+ custom_tooltip = enable_development_on_buildings_built_tt
2699
+ hidden_effect = {
2700
+ set_country_flag = improve_development_on_buildings_built
2701
+ }
2702
+ }
2703
+
2704
+ #Province effect - used for buildings
2705
+ add_development_from_building = {
2706
+ if = {
2707
+ limit = {
2708
+ FROM = { has_country_flag = improve_development_on_buildings_built }
2709
+ NOT = { gained_development_from_building = { building = $building$ } }
2710
+ }
2711
+ add_base_$type$ = $value$
2712
+ hidden_effect = {
2713
+ set_province_flag = built_dev_$building$
2714
+ }
2715
+ }
2716
+ }
2717
+
2718
+ #Province effect - used for buildings
2719
+ add_development_from_upgrading_or_building = {
2720
+ if = {
2721
+ limit = {
2722
+ FROM = { has_country_flag = improve_development_on_buildings_built }
2723
+ NOT = { gained_development_from_building = { building = $building$ } }
2724
+ }
2725
+ if = {
2726
+ limit = { has_province_flag = built_dev_$obsolete_building$ }
2727
+ add_base_$type$ = $upgrade_value$
2728
+ }
2729
+ else = {
2730
+ add_base_$type$ = $value$
2731
+ }
2732
+ hidden_effect = {
2733
+ set_province_flag = built_dev_$building$
2734
+ }
2735
+ }
2736
+ }
2737
+
2738
+ #Province effect - used for buildings
2739
+ remove_development_from_building = {
2740
+ if = {
2741
+ limit = {
2742
+ FROM = { has_country_flag = improve_development_on_buildings_built }
2743
+ gained_development_from_building = { building = $building$ }
2744
+ }
2745
+ add_base_$type$ = -$value$
2746
+ if = {
2747
+ limit = {
2748
+ NOT = { base_$type$ = 1 }
2749
+ }
2750
+ set_base_$type$ = 1
2751
+ }
2752
+ hidden_effect = {
2753
+ clr_province_flag = built_dev_$building$
2754
+ }
2755
+ }
2756
+ }
2757
+
2758
+ #Province effect - used for buildings
2759
+ update_improved_military_buildings_modifier = {
2760
+ if = {
2761
+ limit = {
2762
+ owner = { has_government_attribute = improved_military_buildings }
2763
+ }
2764
+ tooltip = {
2765
+ add_province_modifier = {
2766
+ name = wei_suo_system_reform_$building$_modifier
2767
+ duration = -1
2768
+ }
2769
+ }
2770
+ hidden_effect = {
2771
+ remove_province_modifier = wei_suo_system_reform_barracks_modifier
2772
+ remove_province_modifier = wei_suo_system_reform_training_fields_modifier
2773
+ remove_province_modifier = wei_suo_system_reform_regimental_camp_modifier
2774
+ remove_province_modifier = wei_suo_system_reform_conscription_center_modifier
2775
+ remove_province_modifier = wei_suo_system_reform_soldier_households_modifier
2776
+ if = {
2777
+ limit = { has_building = barracks }
2778
+ add_province_modifier = {
2779
+ name = wei_suo_system_reform_barracks_modifier
2780
+ duration = -1
2781
+ }
2782
+ }
2783
+ if = {
2784
+ limit = { has_building = training_fields }
2785
+ add_province_modifier = {
2786
+ name = wei_suo_system_reform_training_fields_modifier
2787
+ duration = -1
2788
+ }
2789
+ }
2790
+ if = {
2791
+ limit = { has_building = regimental_camp }
2792
+ add_province_modifier = {
2793
+ name = wei_suo_system_reform_regimental_camp_modifier
2794
+ duration = -1
2795
+ }
2796
+ }
2797
+ if = {
2798
+ limit = { has_building = conscription_center }
2799
+ add_province_modifier = {
2800
+ name = wei_suo_system_reform_conscription_center_modifier
2801
+ duration = -1
2802
+ }
2803
+ }
2804
+ if = {
2805
+ limit = { has_building = soldier_households }
2806
+ add_province_modifier = {
2807
+ name = wei_suo_system_reform_soldier_households_modifier
2808
+ duration = -1
2809
+ }
2810
+ }
2811
+ }
2812
+ }
2813
+ }
2814
+
2815
+ #Province effect
2816
+ add_latest_building = {
2817
+ [[trade]
2818
+ if = {
2819
+ limit = { $builder$ = { dip_tech = 22 } }
2820
+ add_building = stock_exchange
2821
+ }
2822
+ else_if = {
2823
+ limit = { $builder$ = { dip_tech = 17 } }
2824
+ add_building = trade_depot
2825
+ }
2826
+ else = {
2827
+ add_building = marketplace
2828
+ }
2829
+ ]
2830
+ [[government]
2831
+ if = {
2832
+ limit = { $builder$ = { adm_tech = 22 } }
2833
+ add_building = town_hall
2834
+ }
2835
+ else = {
2836
+ add_building = courthouse
2837
+ }
2838
+ ]
2839
+ [[production]
2840
+ if = {
2841
+ limit = { $builder$ = { adm_tech = 24 } }
2842
+ add_building = counting_house
2843
+ }
2844
+ else = {
2845
+ add_building = workshop
2846
+ }
2847
+ ]
2848
+ [[tax]
2849
+ if = {
2850
+ limit = { $builder$ = { adm_tech = 19 } }
2851
+ add_building = cathedral
2852
+ }
2853
+ else = {
2854
+ add_building = temple
2855
+ }
2856
+ ]
2857
+ [[manpower]
2858
+ if = {
2859
+ limit = { $builder$ = { mil_tech = 16 } }
2860
+ add_building = training_fields
2861
+ }
2862
+ else = {
2863
+ add_building = barracks
2864
+ }
2865
+ ]
2866
+ [[sailors]
2867
+ if = {
2868
+ limit = { $builder$ = { dip_tech = 19 } }
2869
+ add_building = drydock
2870
+ }
2871
+ else = {
2872
+ add_building = dock
2873
+ }
2874
+ ]
2875
+ [[army_forcelimit]
2876
+ if = {
2877
+ limit = { $builder$ = { mil_tech = 22 } }
2878
+ add_building = conscription_center
2879
+ }
2880
+ else = {
2881
+ add_building = regimental_camp
2882
+ }
2883
+ ]
2884
+ [[navy_forcelimit]
2885
+ if = {
2886
+ limit = { $builder$ = { dip_tech = 24 } }
2887
+ add_building = grand_shipyard
2888
+ }
2889
+ else = {
2890
+ add_building = shipyard
2891
+ }
2892
+ ]
2893
+ [[coastal]
2894
+ if = {
2895
+ limit = { $builder$ = { dip_tech = 12 } }
2896
+ add_building = naval_battery
2897
+ }
2898
+ else = {
2899
+ add_building = coastal_defence
2900
+ }
2901
+ ]
2902
+ [[fort]
2903
+ if = {
2904
+ limit = { $builder$ = { mil_tech = 24 } }
2905
+ add_building = fort_18th
2906
+ }
2907
+ else_if = {
2908
+ limit = { $builder$ = { mil_tech = 19 } }
2909
+ add_building = fort_17th
2910
+ }
2911
+ else_if = {
2912
+ limit = { $builder$ = { mil_tech = 14 } }
2913
+ add_building = fort_16th
2914
+ }
2915
+ else = {
2916
+ add_building = fort_15th
2917
+ }
2918
+ ]
2919
+ }
2920
+
2921
+ #Province effect
2922
+ upgrade_building = {
2923
+ [[trade]
2924
+ if = {
2925
+ limit = { has_building = trade_depot }
2926
+ add_building = stock_exchange
2927
+ }
2928
+ else_if = {
2929
+ limit = { has_building = marketplace }
2930
+ add_building = trade_depot
2931
+ }
2932
+ ]
2933
+ [[government]
2934
+ if = {
2935
+ limit = { has_building = courthouse }
2936
+ add_building = town_hall
2937
+ }
2938
+ ]
2939
+ [[production]
2940
+ if = {
2941
+ limit = { has_building = workshop }
2942
+ add_building = counting_house
2943
+ }
2944
+ ]
2945
+ [[tax]
2946
+ if = {
2947
+ limit = { has_building = temple }
2948
+ add_building = cathedral
2949
+ }
2950
+ ]
2951
+ [[manpower]
2952
+ if = {
2953
+ limit = { has_building = barracks }
2954
+ add_building = training_fields
2955
+ }
2956
+ ]
2957
+ [[sailors]
2958
+ if = {
2959
+ limit = { has_building = dock }
2960
+ add_building = drydock
2961
+ }
2962
+ ]
2963
+ [[army_forcelimit]
2964
+ if = {
2965
+ limit = { has_building = regimental_camp }
2966
+ add_building = conscription_center
2967
+ }
2968
+ ]
2969
+ [[navy_forcelimit]
2970
+ if = {
2971
+ limit = { has_building = shipyard }
2972
+ add_building = grand_shipyard
2973
+ }
2974
+ ]
2975
+ [[coastal]
2976
+ if = {
2977
+ limit = { has_building = coastal_defence }
2978
+ add_building = naval_battery
2979
+ }
2980
+ ]
2981
+ [[fort]
2982
+ if = {
2983
+ limit = { has_building = fort_17th }
2984
+ add_building = fort_18th
2985
+ }
2986
+ else_if = {
2987
+ limit = { has_building = fort_16th }
2988
+ add_building = fort_17th
2989
+ }
2990
+ else_if = {
2991
+ limit = { has_building = fort_15th }
2992
+ add_building = fort_16th
2993
+ }
2994
+ ]
2995
+ }
2996
+
2997
+ #Country effect - Make sure to make an own custom tooltip for it when using it "Gain 搂G$years$ years搂! worth of Trade Income."
2998
+ add_years_of_trade_income = {
2999
+ hidden_effect = {
3000
+ set_variable = {
3001
+ which = trade_years
3002
+ value = $years$
3003
+ }
3004
+ export_to_variable = {
3005
+ which = percentage_of_yearly_trade_income
3006
+ value = trigger_value:trade_income_percentage
3007
+ }
3008
+ export_to_variable = {
3009
+ which = yearly_trade_income
3010
+ value = trigger_value:monthly_income
3011
+ }
3012
+ multiply_variable = {
3013
+ which = yearly_trade_income
3014
+ which = percentage_of_yearly_trade_income
3015
+ }
3016
+ multiply_variable = {
3017
+ which = yearly_trade_income
3018
+ value = 12
3019
+ }
3020
+ while = {
3021
+ limit = {
3022
+ check_variable = {
3023
+ which = trade_years
3024
+ value = 1
3025
+ }
3026
+ }
3027
+ set_variable = {
3028
+ which = trade_income_added
3029
+ which = yearly_trade_income
3030
+ }
3031
+ while = {
3032
+ limit = {
3033
+ check_variable = {
3034
+ which = trade_income_added
3035
+ value = 1
3036
+ }
3037
+ }
3038
+ add_treasury = 1
3039
+ subtract_variable = {
3040
+ which = trade_income_added
3041
+ value = 1
3042
+ }
3043
+ }
3044
+ multiply_variable = {
3045
+ which = trade_income_added
3046
+ value = 100
3047
+ }
3048
+ while = {
3049
+ limit = {
3050
+ check_variable = {
3051
+ which = trade_income_added
3052
+ value = 1
3053
+ }
3054
+ }
3055
+ add_treasury = 0.01
3056
+ subtract_variable = {
3057
+ which = trade_income_added
3058
+ value = 1
3059
+ }
3060
+ }
3061
+ subtract_variable = {
3062
+ which = trade_years
3063
+ value = 1
3064
+ }
3065
+ }
3066
+ }
3067
+ [[custom_tooltip]
3068
+ custom_tooltip = $custom_tooltip$
3069
+ ]
3070
+ }
3071
+
3072
+ #Country effect
3073
+ select_primary_cult = {
3074
+ change_cult = $cult$
3075
+ custom_tooltip = select_primary_cult_$cult$_tt
3076
+ custom_tooltip = tooltip_$cult$
3077
+ hidden_effect = {
3078
+ set_country_flag = has_$cult$_as_primary_cult
3079
+ add_country_modifier = {
3080
+ name = primary_$cult$
3081
+ duration = -1
3082
+ }
3083
+ if = {
3084
+ limit = { has_country_flag = enabled_cult_for_heirs }
3085
+ add_country_modifier = {
3086
+ name = junior_$cult$
3087
+ duration = -1
3088
+ desc = UNTIL_HEIR_SUCCESSION_OR_DEATH
3089
+ }
3090
+ }
3091
+ }
3092
+ }
3093
+
3094
+ #Country effect
3095
+ clear_previous_primary_cults = {
3096
+ hidden_effect = {
3097
+ trigger_switch = {
3098
+ on_trigger = has_country_flag
3099
+ has_yemoja_cult_as_primary_cult = {
3100
+ clr_country_flag = has_yemoja_cult_as_primary_cult
3101
+ remove_country_modifier = junior_yemoja_cult
3102
+ remove_country_modifier = primary_yemoja_cult
3103
+ }
3104
+ has_roog_cult_as_primary_cult = {
3105
+ clr_country_flag = has_roog_cult_as_primary_cult
3106
+ remove_country_modifier = junior_roog_cult
3107
+ remove_country_modifier = primary_roog_cult
3108
+ }
3109
+ has_nyame_cult_as_primary_cult = {
3110
+ clr_country_flag = has_nyame_cult_as_primary_cult
3111
+ remove_country_modifier = junior_nyame_cult
3112
+ remove_country_modifier = primary_nyame_cult
3113
+ }
3114
+ has_cwezi_cult_as_primary_cult = {
3115
+ clr_country_flag = has_cwezi_cult_as_primary_cult
3116
+ remove_country_modifier = junior_cwezi_cult
3117
+ remove_country_modifier = primary_cwezi_cult
3118
+ }
3119
+ has_central_african_ancestor_cult_as_primary_cult = {
3120
+ clr_country_flag = has_central_african_ancestor_cult_as_primary_cult
3121
+ remove_country_modifier = junior_central_african_ancestor_cult
3122
+ remove_country_modifier = primary_central_african_ancestor_cult
3123
+ }
3124
+ has_mwari_cult_as_primary_cult = {
3125
+ clr_country_flag = has_mwari_cult_as_primary_cult
3126
+ remove_country_modifier = junior_mwari_cult
3127
+ remove_country_modifier = primary_mwari_cult
3128
+ }
3129
+ has_enkai_cult_as_primary_cult = {
3130
+ clr_country_flag = has_enkai_cult_as_primary_cult
3131
+ remove_country_modifier = junior_enkai_cult
3132
+ remove_country_modifier = primary_enkai_cult
3133
+ }
3134
+ has_waaq_cult_as_primary_cult = {
3135
+ clr_country_flag = has_waaq_cult_as_primary_cult
3136
+ remove_country_modifier = junior_waaq_cult
3137
+ remove_country_modifier = primary_waaq_cult
3138
+ }
3139
+ has_zanahary_cult_as_primary_cult = {
3140
+ clr_country_flag = has_zanahary_cult_as_primary_cult
3141
+ remove_country_modifier = junior_zanahary_cult
3142
+ remove_country_modifier = primary_zanahary_cult
3143
+ }
3144
+ has_christianity_cult_as_primary_cult = {
3145
+ clr_country_flag = has_christianity_cult_as_primary_cult
3146
+ remove_country_modifier = junior_christianity_cult
3147
+ remove_country_modifier = primary_christianity_cult
3148
+ }
3149
+ has_islam_cult_as_primary_cult = {
3150
+ clr_country_flag = has_islam_cult_as_primary_cult
3151
+ remove_country_modifier = junior_islam_cult
3152
+ remove_country_modifier = primary_islam_cult
3153
+ }
3154
+ has_buddhism_cult_as_primary_cult = {
3155
+ clr_country_flag = has_buddhism_cult_as_primary_cult
3156
+ remove_country_modifier = junior_buddhism_cult
3157
+ remove_country_modifier = primary_buddhism_cult
3158
+ }
3159
+ has_dharmic_cult_as_primary_cult = {
3160
+ clr_country_flag = has_dharmic_cult_as_primary_cult
3161
+ remove_country_modifier = junior_dharmic_cult
3162
+ remove_country_modifier = primary_dharmic_cult
3163
+ }
3164
+ has_south_central_american_cult_as_primary_cult = {
3165
+ clr_country_flag = has_south_central_american_cult_as_primary_cult
3166
+ remove_country_modifier = junior_south_central_american_cult
3167
+ remove_country_modifier = primary_south_central_american_cult
3168
+ }
3169
+ has_norse_cult_as_primary_cult = {
3170
+ clr_country_flag = has_norse_cult_as_primary_cult
3171
+ remove_country_modifier = junior_norse_cult
3172
+ remove_country_modifier = primary_norse_cult
3173
+ }
3174
+ has_jewish_cult_as_primary_cult = {
3175
+ clr_country_flag = has_jewish_cult_as_primary_cult
3176
+ remove_country_modifier = junior_jewish_cult
3177
+ remove_country_modifier = primary_jewish_cult
3178
+ }
3179
+ has_zoroastrian_cult_as_primary_cult = {
3180
+ clr_country_flag = has_zoroastrian_cult_as_primary_cult
3181
+ remove_country_modifier = junior_zoroastrian_cult
3182
+ remove_country_modifier = primary_zoroastrian_cult
3183
+ }
3184
+ }
3185
+ }
3186
+ }
3187
+
3188
+ #Country effect - Triggers on monarch death - deprecated
3189
+ clear_primary_cult_bonus = {
3190
+ hidden_effect = {
3191
+ trigger_switch = {
3192
+ on_trigger = has_country_modifier
3193
+ primary_yemoja_cult = {
3194
+ remove_country_modifier = primary_yemoja_cult
3195
+ }
3196
+ primary_roog_cult = {
3197
+ remove_country_modifier = primary_roog_cult
3198
+ }
3199
+ primary_nyame_cult = {
3200
+ remove_country_modifier = primary_nyame_cult
3201
+ }
3202
+ primary_cwezi_cult = {
3203
+ remove_country_modifier = primary_cwezi_cult
3204
+ }
3205
+ primary_central_african_ancestor_cult = {
3206
+ remove_country_modifier = primary_central_african_ancestor_cult
3207
+ }
3208
+ primary_mwari_cult = {
3209
+ remove_country_modifier = primary_mwari_cult
3210
+ }
3211
+ primary_enkai_cult = {
3212
+ remove_country_modifier = primary_enkai_cult
3213
+ }
3214
+ primary_waaq_cult = {
3215
+ remove_country_modifier = primary_waaq_cult
3216
+ }
3217
+ primary_zanahary_cult = {
3218
+ remove_country_modifier = primary_zanahary_cult
3219
+ }
3220
+ primary_christianity_cult = {
3221
+ remove_country_modifier = primary_christianity_cult
3222
+ }
3223
+ primary_islam_cult = {
3224
+ remove_country_modifier = primary_islam_cult
3225
+ }
3226
+ primary_buddhism_cult = {
3227
+ remove_country_modifier = primary_buddhism_cult
3228
+ }
3229
+ primary_dharmic_cult = {
3230
+ remove_country_modifier = primary_dharmic_cult
3231
+ }
3232
+ primary_south_central_american_cult = {
3233
+ remove_country_modifier = primary_south_central_american_cult
3234
+ }
3235
+ primary_norse_cult = {
3236
+ remove_country_modifier = primary_norse_cult
3237
+ }
3238
+ primary_jewish_cult = {
3239
+ remove_country_modifier = primary_jewish_cult
3240
+ }
3241
+ primary_zoroastrian_cult = {
3242
+ remove_country_modifier = primary_zoroastrian_cult
3243
+ }
3244
+ }
3245
+ }
3246
+ }
3247
+
3248
+ #Country effect
3249
+ enable_primary_cult = {
3250
+ custom_tooltip = enable_primary_cult_tt
3251
+ hidden_effect = {
3252
+ set_country_flag = uses_primary_cult
3253
+ country_event = {
3254
+ id = fetishist_flavor.602
3255
+ }
3256
+ }
3257
+ }
3258
+
3259
+ #Country effect
3260
+ disable_primary_cult = {
3261
+ custom_tooltip = disable_primary_cult_tt
3262
+ hidden_effect = {
3263
+ clr_country_flag = uses_primary_cult
3264
+ clr_country_flag = has_selected_a_primary_cult
3265
+ clear_previous_primary_cults = yes
3266
+ }
3267
+ }
3268
+
3269
+ #Country effect
3270
+ disable_scholar_cost = {
3271
+ custom_tooltip = disable_scholar_cost_tt
3272
+ hidden_effect = {
3273
+ set_country_flag = no_scholar_adm_cost
3274
+ }
3275
+ }
3276
+
3277
+ #Country effect
3278
+ enable_scholar_cost = {
3279
+ custom_tooltip = enable_scholar_cost_tt
3280
+ hidden_effect = {
3281
+ clr_country_flag = no_scholar_adm_cost
3282
+ }
3283
+ }
3284
+
3285
+ #Country effect - Estate
3286
+ enable_baseline_invite_scholar = {
3287
+ custom_tooltip = enable_baseline_invite_scholar_tt
3288
+ hidden_effect = {
3289
+ country_event = {
3290
+ id = muslim_school_events.24
3291
+ }
3292
+ set_country_flag = enabled_baseline_invite_scholar
3293
+ }
3294
+ }
3295
+
3296
+ enable_baseline_invite_scholar_no_privilege = {
3297
+ custom_tooltip = enable_baseline_invite_scholar_tt
3298
+ hidden_effect = {
3299
+ country_event = {
3300
+ id = muslim_school_events.24
3301
+ }
3302
+ set_country_flag = enabled_baseline_invite_scholar_no_priv
3303
+ }
3304
+ }
3305
+
3306
+ allow_baseline_invite_scholar_privilege = {
3307
+ custom_tooltip = allows_every_time_invite_of_$religious_school$
3308
+ hidden_effect = {
3309
+ set_country_flag = privilege_can_always_invite_$religious_school$
3310
+ }
3311
+ custom_tooltip = allow_baseline_invite_scholar_privilege_tt
3312
+ custom_tooltip = $religious_school$_bonus_tt
3313
+ }
3314
+
3315
+ disallow_baseline_invite_scholar = {
3316
+ hidden_effect = {
3317
+ clr_country_flag = privilege_can_always_invite_hanafi_school
3318
+ clr_country_flag = privilege_can_always_invite_hanbali_school
3319
+ clr_country_flag = privilege_can_always_invite_maliki_school
3320
+ clr_country_flag = privilege_can_always_invite_shafii_school
3321
+ clr_country_flag = privilege_can_always_invite_ismaili_school
3322
+ clr_country_flag = privilege_can_always_invite_jafari_school
3323
+ clr_country_flag = privilege_can_always_invite_zaidi_school
3324
+ }
3325
+ }
3326
+
3327
+ disable_baseline_invite_scholar = {
3328
+ custom_tooltip = disable_baseline_invite_scholar_tt
3329
+ hidden_effect = {
3330
+ clr_country_flag = enabled_baseline_invite_scholar
3331
+ if = {
3332
+ limit = { NOT = { has_country_flag = enabled_baseline_invite_scholar_no_priv } }
3333
+ clr_country_flag = privilege_can_always_invite_hanafi_school
3334
+ clr_country_flag = privilege_can_always_invite_hanbali_school
3335
+ clr_country_flag = privilege_can_always_invite_maliki_school
3336
+ clr_country_flag = privilege_can_always_invite_shafii_school
3337
+ clr_country_flag = privilege_can_always_invite_ismaili_school
3338
+ clr_country_flag = privilege_can_always_invite_jafari_school
3339
+ clr_country_flag = privilege_can_always_invite_zaidi_school
3340
+ }
3341
+ }
3342
+ }
3343
+
3344
+ #Country effect
3345
+ enable_capital_slave_raid = {
3346
+ custom_tooltip = enable_capital_slave_raid_tt
3347
+ hidden_effect = {
3348
+ set_country_flag = enabled_capital_slave_raid
3349
+ }
3350
+ if = {
3351
+ limit = { has_dlc = "Leviathan" }
3352
+ custom_tooltip = enable_slave_raid_pillage_tt
3353
+ }
3354
+ }
3355
+
3356
+ disable_capital_slave_raid = {
3357
+ custom_tooltip = disable_capital_slave_raid_tt
3358
+ hidden_effect = {
3359
+ clr_country_flag = enabled_capital_slave_raid
3360
+ }
3361
+ if = {
3362
+ limit = { has_dlc = "Leviathan" }
3363
+ custom_tooltip = disable_slave_raid_pillage_tt
3364
+ }
3365
+ }
3366
+
3367
+ #On action effect
3368
+ grant_manpower_from_besieging_fort = {
3369
+ if = {
3370
+ limit = {
3371
+ ROOT = {
3372
+ OR = {
3373
+ has_government_attribute = manpower_from_capturing_forts
3374
+ has_country_flag = enabled_capital_slave_raid
3375
+ }
3376
+ }
3377
+ FROM = {
3378
+ owner = {
3379
+ war_with = ROOT
3380
+ }
3381
+ NOT = { has_province_modifier = estate_nobles_neighbor_raids_fort }
3382
+ }
3383
+ }
3384
+ FROM = {
3385
+ add_province_modifier = {
3386
+ name = estate_nobles_neighbor_raids_fort
3387
+ duration = 1825
3388
+ }
3389
+ }
3390
+ if = {
3391
+ limit = { FROM = { fort_level = 1 } }
3392
+ ROOT = { add_yearly_manpower = 0.1 }
3393
+ }
3394
+ if = {
3395
+ limit = { FROM = { fort_level = 2 } }
3396
+ ROOT = { add_yearly_manpower = 0.1 }
3397
+ }
3398
+ if = {
3399
+ limit = { FROM = { fort_level = 3 } }
3400
+ ROOT = { add_yearly_manpower = 0.1 }
3401
+ }
3402
+ if = {
3403
+ limit = { FROM = { fort_level = 4 } }
3404
+ ROOT = { add_yearly_manpower = 0.1 }
3405
+ }
3406
+ if = {
3407
+ limit = { FROM = { fort_level = 5 } }
3408
+ ROOT = { add_yearly_manpower = 0.1 }
3409
+ }
3410
+ if = {
3411
+ limit = { FROM = { fort_level = 6 } }
3412
+ ROOT = { add_yearly_manpower = 0.1 }
3413
+ }
3414
+ if = {
3415
+ limit = { FROM = { fort_level = 7 } }
3416
+ ROOT = { add_yearly_manpower = 0.1 }
3417
+ }
3418
+ if = {
3419
+ limit = { FROM = { fort_level = 8 } }
3420
+ ROOT = { add_yearly_manpower = 0.1 }
3421
+ }
3422
+ if = {
3423
+ limit = { FROM = { fort_level = 9 } }
3424
+ ROOT = { add_yearly_manpower = 0.1 }
3425
+ }
3426
+ if = {
3427
+ limit = { FROM = { fort_level = 10 } }
3428
+ ROOT = { add_yearly_manpower = 0.1 }
3429
+ }
3430
+ }
3431
+ }
3432
+
3433
+ slave_raid_pillage_capital_effect = {
3434
+ ROOT = {
3435
+ if = {
3436
+ limit = {
3437
+ has_country_flag = enabled_capital_slave_raid
3438
+ }
3439
+ add_yearly_manpower = 1
3440
+ random_owned_province = {
3441
+ limit = { trade_goods = slaves }
3442
+ add_base_production = 1
3443
+ }
3444
+ }
3445
+ }
3446
+ }
3447
+
3448
+ #Country effect
3449
+ enable_tributary_state_use = {
3450
+ if = {
3451
+ limit = {
3452
+ OR = {
3453
+ has_dlc = "Mandate of Heaven"
3454
+ has_dlc = "Origins"
3455
+ }
3456
+ }
3457
+ custom_tooltip = enable_tributary_state_use_tt
3458
+ }
3459
+ hidden_effect = {
3460
+ set_country_flag = can_create_tributaries_flag
3461
+ }
3462
+ }
3463
+
3464
+ disable_tributary_state_use = {
3465
+ if = {
3466
+ limit = {
3467
+ OR = {
3468
+ has_dlc = "Mandate of Heaven"
3469
+ has_dlc = "Origins"
3470
+ }
3471
+ }
3472
+ custom_tooltip = disable_tributary_state_use_tt
3473
+ }
3474
+ hidden_effect = {
3475
+ clr_country_flag = can_create_tributaries_flag
3476
+ }
3477
+ }
3478
+
3479
+ #Use for estate effects
3480
+ enable_tributary_state_use_estate = {
3481
+ if = {
3482
+ limit = {
3483
+ OR = {
3484
+ has_dlc = "Mandate of Heaven"
3485
+ has_dlc = "Origins"
3486
+ }
3487
+ }
3488
+ custom_tooltip = enable_tributary_state_use_tt
3489
+ }
3490
+ hidden_effect = {
3491
+ set_country_flag = can_create_tributaries_flag_estate
3492
+ }
3493
+ }
3494
+
3495
+ disable_tributary_state_use_estate = {
3496
+ if = {
3497
+ limit = {
3498
+ OR = {
3499
+ has_dlc = "Mandate of Heaven"
3500
+ has_dlc = "Origins"
3501
+ }
3502
+ }
3503
+ custom_tooltip = disable_tributary_state_use_tt
3504
+ }
3505
+ hidden_effect = {
3506
+ clr_country_flag = can_create_tributaries_flag_estate
3507
+ }
3508
+ every_subject_country = {
3509
+ limit = {
3510
+ is_subject_of_type = tributary_state
3511
+ }
3512
+ grant_independence = yes
3513
+ }
3514
+ }
3515
+
3516
+ #Country effect, event target
3517
+ select_biggest_country_of_region = {
3518
+ if = {
3519
+ limit = { any_country = { capital_scope = { region = $region$ } } }
3520
+ if = {
3521
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 1000 } }
3522
+ random_country = {
3523
+ limit = { capital_scope = { region = $region$ } total_development = 1000 }
3524
+ save_event_target_as = selected_biggest_country_of_region
3525
+ }
3526
+ }
3527
+ else_if = {
3528
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 900 } }
3529
+ random_country = {
3530
+ limit = { capital_scope = { region = $region$ } total_development = 900 }
3531
+ save_event_target_as = selected_biggest_country_of_region
3532
+ }
3533
+ }
3534
+ else_if = {
3535
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 800 } }
3536
+ random_country = {
3537
+ limit = { capital_scope = { region = $region$ } total_development = 800 }
3538
+ save_event_target_as = selected_biggest_country_of_region
3539
+ }
3540
+ }
3541
+ else_if = {
3542
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 700 } }
3543
+ random_country = {
3544
+ limit = { capital_scope = { region = $region$ } total_development = 700 }
3545
+ save_event_target_as = selected_biggest_country_of_region
3546
+ }
3547
+ }
3548
+ else_if = {
3549
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 600 } }
3550
+ random_country = {
3551
+ limit = { capital_scope = { region = $region$ } total_development = 600 }
3552
+ save_event_target_as = selected_biggest_country_of_region
3553
+ }
3554
+ }
3555
+ else_if = {
3556
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 500 } }
3557
+ random_country = {
3558
+ limit = { capital_scope = { region = $region$ } total_development = 500 }
3559
+ save_event_target_as = selected_biggest_country_of_region
3560
+ }
3561
+ }
3562
+ else_if = {
3563
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 400 } }
3564
+ random_country = {
3565
+ limit = { capital_scope = { region = $region$ } total_development = 400 }
3566
+ save_event_target_as = selected_biggest_country_of_region
3567
+ }
3568
+ }
3569
+ else_if = {
3570
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 300 } }
3571
+ random_country = {
3572
+ limit = { capital_scope = { region = $region$ } total_development = 300 }
3573
+ save_event_target_as = selected_biggest_country_of_region
3574
+ }
3575
+ }
3576
+ else_if = {
3577
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 200 } }
3578
+ random_country = {
3579
+ limit = { capital_scope = { region = $region$ } total_development = 200 }
3580
+ save_event_target_as = selected_biggest_country_of_region
3581
+ }
3582
+ }
3583
+ else_if = {
3584
+ limit = { any_country = { capital_scope = { region = $region$ } total_development = 100 } }
3585
+ random_country = {
3586
+ limit = { capital_scope = { region = $region$ } total_development = 100 }
3587
+ save_event_target_as = selected_biggest_country_of_region
3588
+ }
3589
+ }
3590
+ else_if = {
3591
+ limit = { any_country = { capital_scope = { region = $region$ } } }
3592
+ random_country = {
3593
+ limit = { capital_scope = { region = $region$ } }
3594
+ save_event_target_as = selected_biggest_country_of_region
3595
+ }
3596
+ }
3597
+ set_country_flag = mal_visit_foreign_capital
3598
+ }
3599
+ }
3600
+
3601
+ select_biggest_country_of_scope_type = {
3602
+ if = {
3603
+ limit = {
3604
+ $trigger_scope$ = {
3605
+ $limit$
3606
+ }
3607
+ }
3608
+ if = {
3609
+ limit = {
3610
+ $trigger_scope$ = {
3611
+ $limit$
3612
+ total_development = 1000
3613
+ }
3614
+ }
3615
+ $effect_scope$ = {
3616
+ limit = {
3617
+ $limit$
3618
+ total_development = 1000
3619
+ }
3620
+ save_event_target_as = selected_biggest_country
3621
+ }
3622
+ }
3623
+ else_if = {
3624
+ limit = {
3625
+ $trigger_scope$ = {
3626
+ $limit$
3627
+ total_development = 900
3628
+ }
3629
+ }
3630
+ $effect_scope$ = {
3631
+ limit = {
3632
+ $limit$
3633
+ total_development = 900
3634
+ }
3635
+ save_event_target_as = selected_biggest_country
3636
+ }
3637
+ }
3638
+ else_if = {
3639
+ limit = {
3640
+ $trigger_scope$ = {
3641
+ $limit$
3642
+ total_development = 800
3643
+ }
3644
+ }
3645
+ $effect_scope$ = {
3646
+ limit = {
3647
+ $limit$
3648
+ total_development = 800
3649
+ }
3650
+ save_event_target_as = selected_biggest_country
3651
+ }
3652
+ }
3653
+ else_if = {
3654
+ limit = {
3655
+ $trigger_scope$ = {
3656
+ $limit$
3657
+ total_development = 700
3658
+ }
3659
+ }
3660
+ $effect_scope$ = {
3661
+ limit = {
3662
+ $limit$
3663
+ total_development = 700
3664
+ }
3665
+ save_event_target_as = selected_biggest_country
3666
+ }
3667
+ }
3668
+ else_if = {
3669
+ limit = {
3670
+ $trigger_scope$ = {
3671
+ $limit$
3672
+ total_development = 600
3673
+ }
3674
+ }
3675
+ $effect_scope$ = {
3676
+ limit = {
3677
+ $limit$
3678
+ total_development = 600
3679
+ }
3680
+ save_event_target_as = selected_biggest_country
3681
+ }
3682
+ }
3683
+ else_if = {
3684
+ limit = {
3685
+ $trigger_scope$ = {
3686
+ $limit$
3687
+ total_development = 500
3688
+ }
3689
+ }
3690
+ $effect_scope$ = {
3691
+ limit = {
3692
+ $limit$
3693
+ total_development = 500
3694
+ }
3695
+ save_event_target_as = selected_biggest_country
3696
+ }
3697
+ }
3698
+ else_if = {
3699
+ limit = {
3700
+ $trigger_scope$ = {
3701
+ $limit$
3702
+ total_development = 400
3703
+ }
3704
+ }
3705
+ $effect_scope$ = {
3706
+ limit = {
3707
+ $limit$
3708
+ total_development = 400
3709
+ }
3710
+ save_event_target_as = selected_biggest_country
3711
+ }
3712
+ }
3713
+ else_if = {
3714
+ limit = {
3715
+ $trigger_scope$ = {
3716
+ $limit$
3717
+ total_development = 300
3718
+ }
3719
+ }
3720
+ $effect_scope$ = {
3721
+ limit = {
3722
+ $limit$
3723
+ total_development = 300
3724
+ }
3725
+ save_event_target_as = selected_biggest_country
3726
+ }
3727
+ }
3728
+ else_if = {
3729
+ limit = {
3730
+ $trigger_scope$ = {
3731
+ $limit$
3732
+ total_development = 200
3733
+ }
3734
+ }
3735
+ $effect_scope$ = {
3736
+ limit = {
3737
+ $limit$
3738
+ total_development = 200
3739
+ }
3740
+ save_event_target_as = selected_biggest_country
3741
+ }
3742
+ }
3743
+ else_if = {
3744
+ limit = {
3745
+ $trigger_scope$ = {
3746
+ $limit$
3747
+ total_development = 100
3748
+ }
3749
+ }
3750
+ $effect_scope$ = {
3751
+ limit = {
3752
+ $limit$
3753
+ total_development = 100
3754
+ }
3755
+ save_event_target_as = selected_biggest_country
3756
+ }
3757
+ }
3758
+ else = {
3759
+ $effect_scope$ = {
3760
+ limit = {
3761
+ $limit$
3762
+ }
3763
+ save_event_target_as = selected_biggest_country
3764
+ }
3765
+ }
3766
+ }
3767
+ }
3768
+
3769
+ #Country effect
3770
+ mal_mansa_musa_visit_effect = {
3771
+ trigger_switch = {
3772
+ on_trigger = has_country_flag
3773
+ mal_journey_to_maghreb = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = maghreb_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3774
+ mal_journey_to_iberia = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = iberia_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3775
+ mal_journey_to_france = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = france_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3776
+ mal_journey_to_italy = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = italy_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3777
+ mal_journey_to_south_germany = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = south_german_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3778
+ mal_journey_to_balkans = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = balkan_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3779
+ mal_journey_to_anatolia = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = anatolia_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3780
+ mal_journey_to_mashriq = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = mashriq_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3781
+ mal_journey_to_egypt = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = egypt_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3782
+ mal_journey_to_arabia = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = arabia_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3783
+ mal_journey_to_horn_of_africa = { every_country = { limit = { NOT = { tag = ROOT } NOT = { has_country_flag = mal_is_already_getting_visit } capital_scope = { region = horn_of_africa_region } } add_country_modifier = { name = mal_the_gold_inflation duration = 1825 } } }
3784
+ }
3785
+ }
3786
+
3787
+ #Country effect
3788
+ mal_invest_in_own_provinces_effect = {
3789
+ trigger_switch = {
3790
+ on_trigger = has_country_flag
3791
+ mal_journey_to_maghreb = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = maghreb_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3792
+ mal_journey_to_iberia = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = iberia_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3793
+ mal_journey_to_france = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = france_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3794
+ mal_journey_to_italy = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = italy_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3795
+ mal_journey_to_south_germany = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = south_german_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3796
+ mal_journey_to_balkans = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = balkan_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3797
+ mal_journey_to_anatolia = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = anatolia_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3798
+ mal_journey_to_mashriq = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = mashriq_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3799
+ mal_journey_to_egypt = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = egypt_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3800
+ mal_journey_to_arabia = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = arabia_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3801
+ mal_journey_to_horn_of_africa = { custom_tooltip = mal_invest_in_region_tt hidden_effect = { every_owned_province = { limit = { region = horn_of_africa_region } } add_province_modifier = { name = mal_investing_in_own_provinces duration = 1825 }} }
3802
+ }
3803
+ }
3804
+
3805
+ #Country effect
3806
+ mal_travel_to_next_area = {
3807
+ if = {
3808
+ limit = { has_country_flag = mal_journey_to_maghreb }
3809
+ clr_country_flag = mal_journey_to_maghreb
3810
+ set_country_flag = mal_journey_to_iberia
3811
+ }
3812
+ else_if = {
3813
+ limit = { has_country_flag = mal_journey_to_iberia }
3814
+ clr_country_flag = mal_journey_to_iberia
3815
+ set_country_flag = mal_journey_to_france
3816
+ }
3817
+ else_if = {
3818
+ limit = { has_country_flag = mal_journey_to_france }
3819
+ clr_country_flag = mal_journey_to_france
3820
+ set_country_flag = mal_journey_to_italy
3821
+ }
3822
+ else_if = {
3823
+ limit = { has_country_flag = mal_journey_to_italy }
3824
+ clr_country_flag = mal_journey_to_italy
3825
+ set_country_flag = mal_journey_to_south_germany
3826
+ }
3827
+ else_if = {
3828
+ limit = { has_country_flag = mal_journey_to_south_germany }
3829
+ clr_country_flag = mal_journey_to_south_germany
3830
+ set_country_flag = mal_journey_to_balkans
3831
+ }
3832
+ else_if = {
3833
+ limit = { has_country_flag = mal_journey_to_balkans }
3834
+ clr_country_flag = mal_journey_to_balkans
3835
+ set_country_flag = mal_journey_to_anatolia
3836
+ }
3837
+ else_if = {
3838
+ limit = { has_country_flag = mal_journey_to_anatolia }
3839
+ clr_country_flag = mal_journey_to_anatolia
3840
+ set_country_flag = mal_journey_to_mashriq
3841
+ }
3842
+ else_if = {
3843
+ limit = { has_country_flag = mal_journey_to_mashriq }
3844
+ clr_country_flag = mal_journey_to_mashriq
3845
+ set_country_flag = mal_journey_to_egypt
3846
+ }
3847
+ else_if = {
3848
+ limit = { has_country_flag = mal_journey_to_egypt }
3849
+ clr_country_flag = mal_journey_to_egypt
3850
+ set_country_flag = mal_journey_to_arabia
3851
+ }
3852
+ else_if = {
3853
+ limit = { has_country_flag = mal_journey_to_arabia }
3854
+ clr_country_flag = mal_journey_to_arabia
3855
+ set_country_flag = mal_journey_to_horn_of_africa
3856
+ }
3857
+ else_if = {
3858
+ limit = { has_country_flag = mal_journey_to_horn_of_africa }
3859
+ clr_country_flag = mal_journey_to_horn_of_africa
3860
+ set_country_flag = mal_journey_to_home
3861
+ }
3862
+ clr_country_flag = mal_has_just_arrived
3863
+ clr_country_flag = mal_visit_foreign_capital
3864
+ }
3865
+
3866
+ #Country effect
3867
+ mal_select_country_for_region = {
3868
+ trigger_switch = {
3869
+ on_trigger = has_country_flag
3870
+ mal_journey_to_maghreb = { maghreb_region = { discover_country = ROOT } select_biggest_country_of_region = { region = maghreb_region } }
3871
+ mal_journey_to_iberia = { iberia_region = { discover_country = ROOT } select_biggest_country_of_region = { region = iberia_region } }
3872
+ mal_journey_to_france = { france_region = { discover_country = ROOT } select_biggest_country_of_region = { region = france_region } }
3873
+ mal_journey_to_italy = { italy_region = { discover_country = ROOT } select_biggest_country_of_region = { region = italy_region } }
3874
+ mal_journey_to_south_germany = { south_german_region = { discover_country = ROOT } select_biggest_country_of_region = { region = south_german_region } }
3875
+ mal_journey_to_balkans = { balkan_region = { discover_country = ROOT } select_biggest_country_of_region = { region = balkan_region } }
3876
+ mal_journey_to_anatolia = { anatolia_region = { discover_country = ROOT } select_biggest_country_of_region = { region = anatolia_region } }
3877
+ mal_journey_to_mashriq = { mashriq_region = { discover_country = ROOT } select_biggest_country_of_region = { region = mashriq_region } }
3878
+ mal_journey_to_egypt = { egypt_region = { discover_country = ROOT } select_biggest_country_of_region = { region = egypt_region } }
3879
+ mal_journey_to_arabia = { arabia_region = { discover_country = ROOT } select_biggest_country_of_region = { region = arabia_region } }
3880
+ mal_journey_to_horn_of_africa = { horn_of_africa_region = { discover_country = ROOT } select_biggest_country_of_region = { region = horn_of_africa_region } }
3881
+ }
3882
+ }
3883
+
3884
+ clr_protestant_aspects_buffs = {
3885
+ if = {
3886
+ limit = { NOT = { has_church_aspect = organised_through_bishops_aspect } }
3887
+ remove_country_modifier = organised_through_bishops_aspect_modifier
3888
+ }
3889
+ if = {
3890
+ limit = { NOT = { has_church_aspect = priests_may_marry_aspect } }
3891
+ remove_country_modifier = priests_may_marry_aspect_modifier
3892
+ }
3893
+ if = {
3894
+ limit = { NOT = { has_church_aspect = adult_baptism_aspect } }
3895
+ remove_country_modifier = adult_baptism_aspect_modifier
3896
+ }
3897
+ if = {
3898
+ limit = { NOT = { has_church_aspect = holy_sacraments_aspect } }
3899
+ remove_country_modifier = holy_sacraments_aspect_modifier
3900
+ }
3901
+ if = {
3902
+ limit = { NOT = { has_church_aspect = saints_accept_prayers_aspect } }
3903
+ remove_country_modifier = saints_accept_prayers_aspect_modifier
3904
+ }
3905
+ if = {
3906
+ limit = { NOT = { has_church_aspect = icons_images_aspect } }
3907
+ remove_country_modifier = icons_images_aspect_modifier
3908
+ }
3909
+ if = {
3910
+ limit = { NOT = { has_church_aspect = legalised_divorces_aspect } }
3911
+ remove_country_modifier = legalised_divorces_aspect_modifier
3912
+ }
3913
+ if = {
3914
+ limit = { NOT = { has_church_aspect = heretics_deported_aspect } }
3915
+ remove_country_modifier = heretics_deported_aspect_modifier
3916
+ }
3917
+ if = {
3918
+ limit = { NOT = { has_church_aspect = parish_registers_aspect } }
3919
+ remove_country_modifier = parish_registers_aspect_modifier
3920
+ }
3921
+ if = {
3922
+ limit = { NOT = { has_church_aspect = individual_creeds_aspect } }
3923
+ remove_country_modifier = individual_creeds_aspect_modifier
3924
+ }
3925
+ if = {
3926
+ limit = { NOT = { has_church_aspect = allow_usury_aspect } }
3927
+ remove_country_modifier = allow_usury_aspect_modifier
3928
+ }
3929
+ if = {
3930
+ limit = { NOT = { has_church_aspect = translated_bibles_aspect } }
3931
+ remove_country_modifier = translated_bibles_aspect_modifier
3932
+ }
3933
+ if = {
3934
+ limit = { NOT = { has_church_aspect = justified_religious_war_aspect } }
3935
+ remove_country_modifier = justified_religious_war_aspect_modifier
3936
+ }
3937
+ if = {
3938
+ limit = { NOT = { has_church_aspect = war_preaches_aspect } }
3939
+ remove_country_modifier = war_preaches_aspect_modifier
3940
+ }
3941
+ if = {
3942
+ limit = { NOT = { has_church_aspect = head_of_the_church_aspect } }
3943
+ remove_country_modifier = head_of_the_church_aspect_modifier
3944
+ }
3945
+ if = {
3946
+ limit = { NOT = { has_church_aspect = anglican_aspect } }
3947
+ remove_country_modifier = anglican_aspect_aspect_modifier
3948
+ }
3949
+ }
3950
+
3951
+ #Credits for that script goes to Stiopa
3952
+ for = {
3953
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
3954
+ hidden_effect = {
3955
+ set_variable = {
3956
+ which = ForLoopCounter
3957
+ value = $amount$
3958
+ }
3959
+ while = {
3960
+ limit = {
3961
+ check_variable = {
3962
+ which = ForLoopCounter
3963
+ value = 1
3964
+ }
3965
+ }
3966
+ $effect$
3967
+ subtract_variable = {
3968
+ which = ForLoopCounter
3969
+ value = 1
3970
+ }
3971
+ }
3972
+ }
3973
+ }
3974
+
3975
+ for_variable_amount = {
3976
+ set_variable = {
3977
+ which = ForLoopCounter
3978
+ which = $variable$
3979
+ }
3980
+
3981
+ while = {
3982
+ limit = {
3983
+ check_variable = {
3984
+ which = ForLoopCounter
3985
+ value = 1
3986
+ }
3987
+ }
3988
+ $effect$
3989
+ subtract_variable = {
3990
+ which = ForLoopCounter
3991
+ value = 1
3992
+ }
3993
+ }
3994
+ }
3995
+
3996
+
3997
+ ##########################################################
3998
+ # Supports following types of units
3999
+ # artillery
4000
+ # cavalry
4001
+ # infantry
4002
+ # mercenary_infantry
4003
+ # mercenary_cavalry
4004
+ # heavy_ship
4005
+ # light_ship
4006
+ # galley
4007
+ # transport
4008
+ # <unit name>
4009
+ ##########################################################
4010
+ #Country effect
4011
+ # For tooltip use the following scheme: "搂Y<amount>搂! of 搂Y<unit_type>搂! will be created in 搂Y[<province>.GetName]搂! for 搂Y[This.GetName]搂!."
4012
+ create_units_of_type = {
4013
+ [[custom_tooltip]
4014
+ custom_tooltip = $custom_tooltip$
4015
+ ]
4016
+ hidden_effect = {
4017
+ for = {
4018
+ amount = $amount$
4019
+ effect = "
4020
+ $province$ = { $unit_type$ = PREV }
4021
+ "
4022
+ }
4023
+ }
4024
+ }
4025
+
4026
+ #Province effect
4027
+ # For tooltip use the following scheme: "搂Y<amount>搂! of 搂Y<unit_type>搂! will be created in 搂Y[This.GetName]搂! for 搂Y[<who>.GetName]搂!."
4028
+ create_units_of_type_in_province = {
4029
+ [[custom_tooltip]
4030
+ custom_tooltip = $custom_tooltip$
4031
+ ]
4032
+ hidden_effect = {
4033
+ $who$ = {
4034
+ for = {
4035
+ amount = $amount$
4036
+ effect = "
4037
+ PREV = { $unit_type$ = $who$ }
4038
+ "
4039
+ }
4040
+ }
4041
+ }
4042
+ }
4043
+
4044
+ #Country effect
4045
+ ##########################################################
4046
+ # Supports following factions (aka. has tooltips for them)
4047
+ # temples
4048
+ # enuchs
4049
+ # bureaucrats
4050
+ # mr_aristocrats
4051
+ # mr_traders
4052
+ # mr_guilds
4053
+ # rr_jacobins
4054
+ # rr_royalists
4055
+ # rr_girondists
4056
+ # pr_buccaneers
4057
+ # pr_smugglers
4058
+ # pr_captains
4059
+ ##########################################################
4060
+ faction_in_power_effect = {
4061
+ if = {
4062
+ limit = { has_faction = $faction$ }
4063
+ if = {
4064
+ limit = { faction_in_power = $faction$ }
4065
+ custom_tooltip = $faction$_are_currently_in_power_tt
4066
+ $effect$
4067
+ }
4068
+ else = {
4069
+ custom_tooltip = $faction$_in_power_tt
4070
+ tooltip = {
4071
+ $effect$
4072
+ }
4073
+ }
4074
+ }
4075
+ }
4076
+
4077
+ ## adds the culture as an accepted culture or 100 dip power
4078
+ ### add_accepted_culture_or_dip_power = { culture = <culture> (optional) free = yes (optional) dip_reward = yes (optional, use when you have this effect twice in a row) new_line = yes }
4079
+ ### the custom effect is only able to check for up to 10 culture slots
4080
+ #Credits for that script goes to Stiopa
4081
+ # In case you want a culture to be a free slot then make sure that you have the following covered:
4082
+ # defined a free_slot_for_$culture$ = { num_accepted_culture = 1 }
4083
+ # Supports currently the following cultures:
4084
+ # armenian
4085
+ # georgian
4086
+ # turkish
4087
+ # al_iraqiya_arabic
4088
+ # al_suryah_arabic
4089
+ add_accepted_culture_or_dip_power = {
4090
+ tooltip = {
4091
+ add_accepted_culture = $culture$
4092
+ }
4093
+ [[free]
4094
+ custom_tooltip = CULTURE_WILL_NOT_TAKE_SLOT_UNTIL_DEMOTED_TT
4095
+ custom_tooltip = ADD_ACCEPTED_CULTURE_TT
4096
+ hidden_effect = {
4097
+ add_country_modifier = {
4098
+ name = free_slot_for_$culture$
4099
+ duration = -1
4100
+ hidden = yes
4101
+ }
4102
+ }
4103
+ ]
4104
+ [[dip_reward]
4105
+ custom_tooltip = ADD_ACCEPTED_CULTURE_SLOT_LIMITATION_TT # "If the 搂YCulture搂! is already an 搂YAccepted Culture搂!, or if there are not enough 搂YSlots搂!, gain 搂G100搂! Diplomatic Power instead."
4106
+ ]
4107
+ hidden_effect = {
4108
+ if = {
4109
+ limit = {
4110
+ accepted_culture = $culture$
4111
+ }
4112
+ add_dip_power = 100
4113
+ }
4114
+ else_if = {
4115
+ limit = {
4116
+ primary_culture = $culture$
4117
+ }
4118
+ add_dip_power = 100
4119
+ }
4120
+ else_if = {
4121
+ limit = {
4122
+ num_accepted_cultures = 10
4123
+ }
4124
+ if = {
4125
+ limit = {
4126
+ has_global_modifier_value = {
4127
+ which = num_accepted_cultures
4128
+ value = 11
4129
+ }
4130
+ }
4131
+ add_accepted_culture = $culture$
4132
+ }
4133
+ else = {
4134
+ add_dip_power = 100
4135
+ }
4136
+ }
4137
+ else_if = {
4138
+ limit = {
4139
+ num_accepted_cultures = 9
4140
+ }
4141
+ if = {
4142
+ limit = {
4143
+ has_global_modifier_value = {
4144
+ which = num_accepted_cultures
4145
+ value = 10
4146
+ }
4147
+ }
4148
+ add_accepted_culture = $culture$
4149
+ }
4150
+ else = {
4151
+ add_dip_power = 100
4152
+ }
4153
+ }
4154
+ else_if = {
4155
+ limit = {
4156
+ num_accepted_cultures = 8
4157
+ }
4158
+ if = {
4159
+ limit = {
4160
+ has_global_modifier_value = {
4161
+ which = num_accepted_cultures
4162
+ value = 9
4163
+ }
4164
+ }
4165
+ add_accepted_culture = $culture$
4166
+ }
4167
+ else = {
4168
+ add_dip_power = 100
4169
+ }
4170
+ }
4171
+ else_if = {
4172
+ limit = {
4173
+ num_accepted_cultures = 7
4174
+ }
4175
+ if = {
4176
+ limit = {
4177
+ has_global_modifier_value = {
4178
+ which = num_accepted_cultures
4179
+ value = 8
4180
+ }
4181
+ }
4182
+ add_accepted_culture = $culture$
4183
+ }
4184
+ else = {
4185
+ add_dip_power = 100
4186
+ }
4187
+ }
4188
+ else_if = {
4189
+ limit = {
4190
+ num_accepted_cultures = 6
4191
+ }
4192
+ if = {
4193
+ limit = {
4194
+ has_global_modifier_value = {
4195
+ which = num_accepted_cultures
4196
+ value = 7
4197
+ }
4198
+ }
4199
+ add_accepted_culture = $culture$
4200
+ }
4201
+ else = {
4202
+ add_dip_power = 100
4203
+ }
4204
+ }
4205
+ else_if = {
4206
+ limit = {
4207
+ num_accepted_cultures = 5
4208
+ }
4209
+ if = {
4210
+ limit = {
4211
+ has_global_modifier_value = {
4212
+ which = num_accepted_cultures
4213
+ value = 6
4214
+ }
4215
+ }
4216
+ add_accepted_culture = $culture$
4217
+ }
4218
+ else = {
4219
+ add_dip_power = 100
4220
+ }
4221
+ }
4222
+ else_if = {
4223
+ limit = {
4224
+ num_accepted_cultures = 4
4225
+ }
4226
+ if = {
4227
+ limit = {
4228
+ has_global_modifier_value = {
4229
+ which = num_accepted_cultures
4230
+ value = 5
4231
+ }
4232
+ }
4233
+ add_accepted_culture = $culture$
4234
+ }
4235
+ else = {
4236
+ add_dip_power = 100
4237
+ }
4238
+ }
4239
+ else_if = {
4240
+ limit = {
4241
+ num_accepted_cultures = 3
4242
+ }
4243
+ if = {
4244
+ limit = {
4245
+ has_global_modifier_value = {
4246
+ which = num_accepted_cultures
4247
+ value = 4
4248
+ }
4249
+ }
4250
+ add_accepted_culture = $culture$
4251
+ }
4252
+ else = {
4253
+ add_dip_power = 100
4254
+ }
4255
+ }
4256
+ else_if = {
4257
+ limit = {
4258
+ num_accepted_cultures = 2
4259
+ }
4260
+ if = {
4261
+ limit = {
4262
+ has_global_modifier_value = {
4263
+ which = num_accepted_cultures
4264
+ value = 3
4265
+ }
4266
+ }
4267
+ add_accepted_culture = $culture$
4268
+ }
4269
+ else = {
4270
+ add_dip_power = 100
4271
+ }
4272
+ }
4273
+ else_if = {
4274
+ limit = {
4275
+ num_accepted_cultures = 1
4276
+ }
4277
+ if = {
4278
+ limit = {
4279
+ has_global_modifier_value = {
4280
+ which = num_accepted_cultures
4281
+ value = 2
4282
+ }
4283
+ }
4284
+ add_accepted_culture = $culture$
4285
+ }
4286
+ else = {
4287
+ add_dip_power = 100
4288
+ }
4289
+ }
4290
+ else_if = {
4291
+ limit = {
4292
+ NOT = { num_accepted_cultures = 1 }
4293
+ }
4294
+ if = {
4295
+ limit = {
4296
+ has_global_modifier_value = {
4297
+ which = num_accepted_cultures
4298
+ value = 1
4299
+ }
4300
+ }
4301
+ add_accepted_culture = $culture$
4302
+ }
4303
+ else = {
4304
+ add_dip_power = 100
4305
+ }
4306
+ }
4307
+ else = {
4308
+ add_dip_power = 100
4309
+ }
4310
+ }
4311
+ [[new_line]
4312
+ custom_tooltip = " "
4313
+ ]
4314
+ }
4315
+
4316
+ #Use this scripted in the on_actions file, on_battle_won_country
4317
+ count_won_battles_and_reward_at_end = {
4318
+ if = {
4319
+ limit = {
4320
+ ROOT = {
4321
+ has_country_flag = $counting_flag$ #Using country flags because we don't want a country to stack a variable out of control and cause performance issue because of large variables.
4322
+ }
4323
+ }
4324
+ ROOT = {
4325
+ change_variable = {
4326
+ which = num_won_battles
4327
+ value = 1
4328
+ }
4329
+ }
4330
+ }
4331
+ if = {
4332
+ limit = {
4333
+ ROOT = {
4334
+ has_country_flag = $counting_flag$
4335
+ check_variable = {
4336
+ which = num_won_battles
4337
+ value = $max_value$
4338
+ }
4339
+ }
4340
+ }
4341
+ ROOT = {
4342
+ clr_country_flag = $counting_flag$
4343
+ $effect$
4344
+ }
4345
+ }
4346
+ }
4347
+
4348
+ fifty_percent_merc_army_professionalism_cost = {
4349
+ custom_tooltip = fifty_percent_merc_army_professionalism_cost_tt
4350
+ hidden_effect = {
4351
+ set_country_flag = fifty_percent_merc_army_professionalism_cost
4352
+ }
4353
+ }
4354
+
4355
+ #Province effect
4356
+ set_center_level_3_center_of_trade = {
4357
+ custom_tooltip = set_center_level_3_center_of_trade_tt
4358
+ hidden_effect = {
4359
+ if = {
4360
+ limit = { NOT = { province_has_center_of_trade_of_level = 1 } }
4361
+ center_of_trade = 3
4362
+ }
4363
+ else = {
4364
+ if = {
4365
+ limit = { province_has_center_of_trade_of_level = 3 }
4366
+ add_base_production = 4
4367
+ }
4368
+ else_if = {
4369
+ limit = { province_has_center_of_trade_of_level = 2 }
4370
+ add_base_production = 2
4371
+ add_center_of_trade_level = 1
4372
+ }
4373
+ else = {
4374
+ add_center_of_trade_level = 2
4375
+ }
4376
+ }
4377
+ }
4378
+ }
4379
+
4380
+
4381
+ set_center_level_2_center_of_trade = {
4382
+ custom_tooltip = set_center_level_2_center_of_trade_tt
4383
+ hidden_effect = {
4384
+ if = {
4385
+ limit = { NOT = { province_has_center_of_trade_of_level = 1 } }
4386
+ center_of_trade = 2
4387
+ }
4388
+ else = {
4389
+ if = {
4390
+ limit = { province_has_center_of_trade_of_level = 2 }
4391
+ add_base_production = 2
4392
+ }
4393
+ else = {
4394
+ add_center_of_trade_level = 1
4395
+ }
4396
+ }
4397
+ }
4398
+ }
4399
+
4400
+ enable_admirals_army_professionalism = {
4401
+ if = {
4402
+ limit = { has_dlc = "Cradle of Civilization" }
4403
+ custom_tooltip = admirals_give_army_professionalism_tt
4404
+ }
4405
+ hidden_effect = {
4406
+ set_country_flag = admirals_give_army_professionalism
4407
+ }
4408
+ }
4409
+
4410
+ make_ruler_to_legendary_pirate = {
4411
+ if = {
4412
+ limit = {
4413
+ has_dlc = "Rights of Man"
4414
+ NOT = { num_of_ruler_traits = { amount = 3 } }
4415
+ }
4416
+ add_ruler_personality = legendary_pirate_personality
4417
+ custom_tooltip = legendary_pirate_personality_at
4418
+ }
4419
+ else = {
4420
+ custom_tooltip = legendary_pirate_personality_bt
4421
+ }
4422
+ set_ruler_flag = historical_pirate
4423
+ random_list = {
4424
+ 1 = { trigger = { NOT = { ADM = 6 } } change_adm = 1 }
4425
+ 1 = { trigger = { NOT = { DIP = 6 } } change_dip = 1 }
4426
+ 1 = { trigger = { NOT = { MIL = 6 } } change_mil = 1 }
4427
+ }
4428
+ }
4429
+
4430
+ add_influence_to_random_faction = {
4431
+ random_list = {
4432
+ 1 = {
4433
+ trigger = {
4434
+ has_faction = rr_girondists
4435
+ }
4436
+ add_faction_influence = {
4437
+ faction = rr_girondists
4438
+ influence = $influence$
4439
+ }
4440
+ }
4441
+ 1 = {
4442
+ trigger = {
4443
+ has_faction = rr_jacobins
4444
+ }
4445
+ add_faction_influence = {
4446
+ faction = rr_jacobins
4447
+ influence = $influence$
4448
+ }
4449
+ }
4450
+ 1 = {
4451
+ trigger = {
4452
+ has_faction = rr_royalists
4453
+ }
4454
+ add_faction_influence = {
4455
+ faction = rr_royalists
4456
+ influence = $influence$
4457
+ }
4458
+ }
4459
+ 1 = {
4460
+ trigger = {
4461
+ has_faction = pr_buccaneers
4462
+ }
4463
+ add_faction_influence = {
4464
+ faction = pr_buccaneers
4465
+ influence = $influence$
4466
+ }
4467
+ }
4468
+ 1 = {
4469
+ trigger = {
4470
+ has_faction = pr_captains
4471
+ }
4472
+ add_faction_influence = {
4473
+ faction = pr_captains
4474
+ influence = $influence$
4475
+ }
4476
+ }
4477
+ 1 = {
4478
+ trigger = {
4479
+ has_faction = pr_smugglers
4480
+ }
4481
+ add_faction_influence = {
4482
+ faction = pr_smugglers
4483
+ influence = $influence$
4484
+ }
4485
+ }
4486
+ 1 = {
4487
+ trigger = {
4488
+ has_faction = mr_aristocrats
4489
+ }
4490
+ add_faction_influence = {
4491
+ faction = mr_aristocrats
4492
+ influence = $influence$
4493
+ }
4494
+ }
4495
+ 1 = {
4496
+ trigger = {
4497
+ has_faction = mr_guilds
4498
+ }
4499
+ add_faction_influence = {
4500
+ faction = mr_guilds
4501
+ influence = $influence$
4502
+ }
4503
+ }
4504
+ 1 = {
4505
+ trigger = {
4506
+ has_faction = mr_traders
4507
+ }
4508
+ add_faction_influence = {
4509
+ faction = mr_traders
4510
+ influence = $influence$
4511
+ }
4512
+ }
4513
+ 1 = {
4514
+ trigger = {
4515
+ has_faction = enuchs
4516
+ }
4517
+ add_faction_influence = {
4518
+ faction = enuchs
4519
+ influence = $influence$
4520
+ }
4521
+ }
4522
+ 1 = {
4523
+ trigger = {
4524
+ has_faction = bureaucrats
4525
+ }
4526
+ add_faction_influence = {
4527
+ faction = bureaucrats
4528
+ influence = $influence$
4529
+ }
4530
+ }
4531
+ 1 = {
4532
+ trigger = {
4533
+ has_faction = temples
4534
+ }
4535
+ add_faction_influence = {
4536
+ faction = temples
4537
+ influence = $influence$
4538
+ }
4539
+ }
4540
+ }
4541
+ }
4542
+
4543
+ add_influence_to_adm_faction = {
4544
+ if = {
4545
+ limit = {
4546
+ has_faction = mr_guilds
4547
+ }
4548
+ add_faction_influence = {
4549
+ faction = mr_guilds
4550
+ influence = $influence$
4551
+ }
4552
+ }
4553
+ if = {
4554
+ limit = {
4555
+ has_faction = pr_buccaneers
4556
+ }
4557
+ add_faction_influence = {
4558
+ faction = pr_buccaneers
4559
+ influence = $influence$
4560
+ }
4561
+ }
4562
+ if = {
4563
+ limit = {
4564
+ has_faction = rr_jacobins
4565
+ }
4566
+ add_faction_influence = {
4567
+ faction = rr_jacobins
4568
+ influence = $influence$
4569
+ }
4570
+ }
4571
+ if = {
4572
+ limit = {
4573
+ has_faction = bureaucrats
4574
+ }
4575
+ add_faction_influence = {
4576
+ faction = bureaucrats
4577
+ influence = $influence$
4578
+ }
4579
+ }
4580
+ }
4581
+
4582
+ add_influence_to_dip_faction = {
4583
+ if = {
4584
+ limit = {
4585
+ has_faction = mr_traders
4586
+ }
4587
+ add_faction_influence = {
4588
+ faction = mr_traders
4589
+ influence = $influence$
4590
+ }
4591
+ }
4592
+ if = {
4593
+ limit = {
4594
+ has_faction = pr_smugglers
4595
+ }
4596
+ add_faction_influence = {
4597
+ faction = pr_smugglers
4598
+ influence = $influence$
4599
+ }
4600
+ }
4601
+ if = {
4602
+ limit = {
4603
+ has_faction = rr_royalists
4604
+ }
4605
+ add_faction_influence = {
4606
+ faction = rr_royalists
4607
+ influence = $influence$
4608
+ }
4609
+ }
4610
+ if = {
4611
+ limit = {
4612
+ has_faction = enuchs
4613
+ }
4614
+ add_faction_influence = {
4615
+ faction = enuchs
4616
+ influence = $influence$
4617
+ }
4618
+ }
4619
+ }
4620
+
4621
+ add_influence_to_mil_faction = {
4622
+ if = {
4623
+ limit = {
4624
+ has_faction = mr_aristocrats
4625
+ }
4626
+ add_faction_influence = {
4627
+ faction = mr_aristocrats
4628
+ influence = $influence$
4629
+ }
4630
+ }
4631
+ if = {
4632
+ limit = {
4633
+ has_faction = pr_captains
4634
+ }
4635
+ add_faction_influence = {
4636
+ faction = pr_captains
4637
+ influence = $influence$
4638
+ }
4639
+ }
4640
+ if = {
4641
+ limit = {
4642
+ has_faction = rr_girondists
4643
+ }
4644
+ add_faction_influence = {
4645
+ faction = rr_girondists
4646
+ influence = $influence$
4647
+ }
4648
+ }
4649
+ if = {
4650
+ limit = {
4651
+ has_faction = temples
4652
+ }
4653
+ add_faction_influence = {
4654
+ faction = temples
4655
+ influence = $influence$
4656
+ }
4657
+ }
4658
+ }
4659
+
4660
+ show_points_needed_for_livionian_government_of_category = {
4661
+ [[adm]
4662
+ if = {
4663
+ limit = { NOT = { check_variable = { which = liv_adm value = 5 } } }
4664
+ custom_tooltip = livonian_administrative_monarchy_points_needed_tt
4665
+ }
4666
+ if = {
4667
+ limit = { NOT = { check_variable = { which = liv_adm value = 4 } } }
4668
+ custom_tooltip = livonian_absolute_monarchy_points_needed_tt
4669
+ }
4670
+ if = {
4671
+ limit = { NOT = { check_variable = { which = liv_adm value = 3 } } }
4672
+ custom_tooltip = livonian_trade_monarchy_points_needed_tt
4673
+ }
4674
+ if = {
4675
+ limit = { NOT = { check_variable = { which = liv_adm value = 3 } } }
4676
+ custom_tooltip = livonian_constitutional_monarchy_points_needed_tt
4677
+ }
4678
+ if = {
4679
+ limit = { NOT = { check_variable = { which = liv_adm value = 3 } } }
4680
+ custom_tooltip = livonian_theocratic_monarchy_points_needed_tt
4681
+ }
4682
+ if = {
4683
+ limit = { NOT = { check_variable = { which = liv_adm value = 2 } } }
4684
+ custom_tooltip = livonian_enlightened_monarchy_points_needed_tt
4685
+ }
4686
+ ]
4687
+ [[dip]
4688
+ if = {
4689
+ limit = { NOT = { check_variable = { which = liv_dip value = 5 } } }
4690
+ custom_tooltip = livonian_naval_monarchy_points_needed_tt
4691
+ }
4692
+ if = {
4693
+ limit = { NOT = { check_variable = { which = liv_dip value = 4 } } }
4694
+ custom_tooltip = livonian_diplomatic_monarchy_points_needed_tt
4695
+ }
4696
+ if = {
4697
+ limit = { NOT = { check_variable = { which = liv_dip value = 4 } } }
4698
+ custom_tooltip = livonian_admiral_monarchy_points_needed_tt
4699
+ }
4700
+ if = {
4701
+ limit = { NOT = { check_variable = { which = liv_dip value = 3 } } }
4702
+ custom_tooltip = livonian_trade_monarchy_points_needed_tt
4703
+ }
4704
+ if = {
4705
+ limit = { NOT = { check_variable = { which = liv_dip value = 3 } } }
4706
+ custom_tooltip = livonian_elective_monarchy_points_needed_tt
4707
+ }
4708
+ if = {
4709
+ limit = { NOT = { check_variable = { which = liv_dip value = 3 } } }
4710
+ custom_tooltip = livonian_naval_controlled_monarchy_points_needed_tt
4711
+ }
4712
+ if = {
4713
+ limit = { NOT = { check_variable = { which = liv_dip value = 2 } } }
4714
+ custom_tooltip = livonian_enlightened_monarchy_points_needed_tt
4715
+ }
4716
+ ]
4717
+ [[mil]
4718
+ if = {
4719
+ limit = { NOT = { check_variable = { which = liv_mil value = 5 } } }
4720
+ custom_tooltip = livonian_military_monarchy_points_needed_tt
4721
+ }
4722
+ if = {
4723
+ limit = { NOT = { check_variable = { which = liv_mil value = 4 } } }
4724
+ custom_tooltip = livonian_general_controlled_monarchy_points_needed_tt
4725
+ }
4726
+ if = {
4727
+ limit = { NOT = { check_variable = { which = liv_mil value = 3 } } }
4728
+ custom_tooltip = livonian_theocratic_monarchy_points_needed_tt
4729
+ }
4730
+ if = {
4731
+ limit = { NOT = { check_variable = { which = liv_mil value = 3 } } }
4732
+ custom_tooltip = livonian_mercenary_monarchy_points_needed_tt
4733
+ }
4734
+ if = {
4735
+ limit = { NOT = { check_variable = { which = liv_mil value = 3 } } }
4736
+ custom_tooltip = livonian_naval_controlled_monarchy_points_needed_tt
4737
+ }
4738
+ if = {
4739
+ limit = { NOT = { check_variable = { which = liv_mil value = 2 } } }
4740
+ custom_tooltip = livonian_enlightened_monarchy_points_needed_tt
4741
+ }
4742
+ ]
4743
+ }
4744
+
4745
+ add_revolutionary_zeal_or_absolutism = {
4746
+ if = {
4747
+ limit = {
4748
+ has_dlc = "Emperor"
4749
+ is_revolutionary = yes
4750
+ }
4751
+ add_revolutionary_zeal = $amount$
4752
+ }
4753
+ else = {
4754
+ add_absolutism = $amount$
4755
+ }
4756
+ }
4757
+
4758
+ #Cut because the Grand Crusade war doesn't really have any place in the current content, but it could be very useful for the future.
4759
+ #Also modders should have the chance to just uncomment it all so they can experience the great 30 Years War like Crusade.
4760
+ #enable_grand_crusade = {
4761
+ # custom_tooltip = enable_grand_crusade_tt
4762
+ # set_country_flag = can_declare_grand_crusade_wars
4763
+ # hidden_effect = {
4764
+ # save_global_event_target_as = grand_crusader_war_monger
4765
+ # set_global_flag = grand_crusades_enabled
4766
+ # set_country_flag = grand_crusader_war_monger_flag
4767
+ # }
4768
+ #}
4769
+ #enable_grand_crusade_tt: "Enables the 搂YGrand Crusade搂! casus belli against all 搂YHeathen搂! nations which have at least 搂Y300搂! total development.\nThis casus belli enables a decision for every independent 搂YCatholic搂! nation to join the Grand Crusade.\n\nTo join the Grand Crusade the Catholic nation must fulfil the following conditions:\nHas at least 搂Y100搂! opinion of us or vice versa\nIs NOT allied with the 搂YGrand Crusade Target搂! target\nHas NOT a truce with the 搂YGrand Crusade Target搂!\nIs not at war\nDid NOT complete the 搂YHumanist搂! idea group\n\n搂RNations of the religion group of the 搂YGrand Crusade Target搂! can join the defender's side.搂!"
4770
+
4771
+ add_humiliation_reward = {
4772
+ if = {
4773
+ limit = { has_dlc = "Mandate of Heaven" }
4774
+ custom_tooltip = add_humiliation_reward_tt
4775
+ }
4776
+ add_power_projection = {
4777
+ type = humiliation_of_a_rival
4778
+ amount = 30
4779
+ }
4780
+ hidden_effect = {
4781
+ set_country_flag = humiliated_rival
4782
+ }
4783
+ }
4784
+
4785
+ set_likely_rebels_flag = {
4786
+ hidden_effect = {
4787
+ if = { limit = { likely_rebels = anglican_rebels } set_province_flag = likely_spawns_anglican_rebels }
4788
+ if = { limit = { likely_rebels = animism_rebels } set_province_flag = likely_spawns_animism_rebels }
4789
+ if = { limit = { likely_rebels = anti_tax_rebels } set_province_flag = likely_spawns_anti_tax_rebels }
4790
+ if = { limit = { likely_rebels = buddhism_rebels } set_province_flag = likely_spawns_buddhism_rebels }
4791
+ if = { limit = { likely_rebels = catholic_rebels } set_province_flag = likely_spawns_catholic_rebels }
4792
+ if = { limit = { likely_rebels = confucianism_rebels } set_province_flag = likely_spawns_confucianism_rebels }
4793
+ if = { limit = { likely_rebels = coptic_rebels } set_province_flag = likely_spawns_coptic_rebels }
4794
+ if = { limit = { likely_rebels = cossack_rebels } set_province_flag = likely_spawns_cossack_rebels }
4795
+ if = { limit = { likely_rebels = dreamtime_rebels } set_province_flag = likely_spawns_dreamtime_rebels }
4796
+ if = { limit = { likely_rebels = eunuch_rebels } set_province_flag = likely_spawns_eunuch_rebels }
4797
+ if = { limit = { likely_rebels = heretic_rebels } set_province_flag = likely_spawns_heretic_rebels }
4798
+ if = { limit = { likely_rebels = hinduism_rebels } set_province_flag = likely_spawns_hinduism_rebels }
4799
+ if = { limit = { likely_rebels = hussite_rebels } set_province_flag = likely_spawns_hussite_rebels }
4800
+ if = { limit = { likely_rebels = ibadi_rebels } set_province_flag = likely_spawns_ibadi_rebels }
4801
+ if = { limit = { likely_rebels = ikko_ikki_rebels } set_province_flag = likely_spawns_ikko_ikki_rebels }
4802
+ if = { limit = { likely_rebels = inti_rebels } set_province_flag = likely_spawns_inti_rebels }
4803
+ if = { limit = { likely_rebels = janissary_rebels } set_province_flag = likely_spawns_janissary_rebels }
4804
+ if = { limit = { likely_rebels = jewish_rebels } set_province_flag = likely_spawns_jewish_rebels }
4805
+ if = { limit = { likely_rebels = lollard_rebels } set_province_flag = likely_spawns_lollard_rebels }
4806
+ if = { limit = { likely_rebels = mahayana_rebels } set_province_flag = likely_spawns_mahayana_rebels }
4807
+ if = { limit = { likely_rebels = maya_rebels } set_province_flag = likely_spawns_maya_rebels }
4808
+ if = { limit = { likely_rebels = nahuatl_rebels } set_province_flag = likely_spawns_nahuatl_rebels }
4809
+ if = { limit = { likely_rebels = nap_republican_rebels } set_province_flag = likely_spawns_nap_republican_rebels }
4810
+ if = { limit = { likely_rebels = nationalist_rebels } set_province_flag = likely_spawns_nationalist_rebels }
4811
+ if = { limit = { likely_rebels = noble_rebels } set_province_flag = likely_spawns_noble_rebels }
4812
+ if = { limit = { likely_rebels = norse_pagan_reformed_rebels } set_province_flag = likely_spawns_norse_pagan_reformed_rebels }
4813
+ if = { limit = { likely_rebels = orthodox_rebels } set_province_flag = likely_spawns_orthodox_rebels }
4814
+ if = { limit = { likely_rebels = particularist_rebels } set_province_flag = likely_spawns_particularist_rebels }
4815
+ if = { limit = { likely_rebels = leadered_peasant_rebels } set_province_flag = likely_spawns_leadered_peasant_rebels }
4816
+ if = { limit = { likely_rebels = polish_noble_rebels } set_province_flag = likely_spawns_polish_noble_rebels }
4817
+ if = { limit = { likely_rebels = pretender_rebels } set_province_flag = likely_spawns_pretender_rebels }
4818
+ if = { limit = { likely_rebels = protestant_rebels } set_province_flag = likely_spawns_protestant_rebels }
4819
+ if = { limit = { likely_rebels = reformed_rebels } set_province_flag = likely_spawns_reformed_rebels }
4820
+ if = { limit = { likely_rebels = revolutionary_rebels } set_province_flag = likely_spawns_revolutionary_rebels }
4821
+ if = { limit = { likely_rebels = ronin_rebels } set_province_flag = likely_spawns_ronin_rebels }
4822
+ if = { limit = { likely_rebels = shamanism_rebels } set_province_flag = likely_spawns_shamanism_rebels }
4823
+ if = { limit = { likely_rebels = shiite_rebels } set_province_flag = likely_spawns_shiite_rebels }
4824
+ if = { limit = { likely_rebels = shinto_rebels } set_province_flag = likely_spawns_shinto_rebels }
4825
+ if = { limit = { likely_rebels = sikhism_rebels } set_province_flag = likely_spawns_sikhism_rebels }
4826
+ if = { limit = { likely_rebels = sunni_rebels } set_province_flag = likely_spawns_sunni_rebels }
4827
+ if = { limit = { likely_rebels = tengri_pagan_reformed_rebels } set_province_flag = likely_spawns_tengri_pagan_reformed_rebels }
4828
+ if = { limit = { likely_rebels = totemism_rebels } set_province_flag = likely_spawns_totemism_rebels }
4829
+ if = { limit = { likely_rebels = tribal_rebels } set_province_flag = likely_spawns_tribal_rebels }
4830
+ if = { limit = { likely_rebels = vajrayana_rebels } set_province_flag = likely_spawns_vajrayana_rebels }
4831
+ if = { limit = { likely_rebels = zoroastrian_rebels } set_province_flag = likely_spawns_zoroastrian_rebels }
4832
+ }
4833
+ }
4834
+
4835
+ #Province scope
4836
+ spawn_likely_rebels = {
4837
+ trigger_switch = {
4838
+ on_trigger = has_province_flag
4839
+ likely_spawns_anglican_rebels = { spawn_rebels = { type = anglican_rebels size = $size$ } }
4840
+ likely_spawns_animism_rebels = { spawn_rebels = { type = animism_rebels size = $size$ } }
4841
+ likely_spawns_anti_tax_rebels = { spawn_rebels = { type = anti_tax_rebels size = $size$ } }
4842
+ likely_spawns_buddhism_rebels = { spawn_rebels = { type = buddhism_rebels size = $size$ } }
4843
+ likely_spawns_catholic_rebels = { spawn_rebels = { type = catholic_rebels size = $size$ } }
4844
+ likely_spawns_confucianism_rebels = { spawn_rebels = { type = confucianism_rebels size = $size$ } }
4845
+ likely_spawns_coptic_rebels = { spawn_rebels = { type = coptic_rebels size = $size$ } }
4846
+ likely_spawns_cossack_rebels = { spawn_rebels = { type = cossack_rebels size = $size$ } }
4847
+ likely_spawns_dreamtime_rebels = { spawn_rebels = { type = dreamtime_rebels size = $size$ } }
4848
+ likely_spawns_eunuch_rebels = { spawn_rebels = { type = eunuch_rebels size = $size$ } }
4849
+ likely_spawns_heretic_rebels = { spawn_rebels = { type = heretic_rebels size = $size$ } }
4850
+ likely_spawns_hinduism_rebels = { spawn_rebels = { type = hinduism_rebels size = $size$ } }
4851
+ likely_spawns_hussite_rebels = { spawn_rebels = { type = hussite_rebels size = $size$ } }
4852
+ likely_spawns_ibadi_rebels = { spawn_rebels = { type = ibadi_rebels size = $size$ } }
4853
+ likely_spawns_ikko_ikki_rebels = { spawn_rebels = { type = ikko_ikki_rebels size = $size$ } }
4854
+ likely_spawns_inti_rebels = { spawn_rebels = { type = inti_rebels size = $size$ } }
4855
+ likely_spawns_janissary_rebels = { spawn_rebels = { type = janissary_rebels size = $size$ } }
4856
+ likely_spawns_jewish_rebels = { spawn_rebels = { type = jewish_rebels size = $size$ } }
4857
+ likely_spawns_lollard_rebels = { spawn_rebels = { type = lollard_rebels size = $size$ } }
4858
+ likely_spawns_mahayana_rebels = { spawn_rebels = { type = mahayana_rebels size = $size$ } }
4859
+ likely_spawns_maya_rebels = { spawn_rebels = { type = maya_rebels size = $size$ } }
4860
+ likely_spawns_nahuatl_rebels = { spawn_rebels = { type = nahuatl_rebels size = $size$ } }
4861
+ likely_spawns_nap_republican_rebels = { spawn_rebels = { type = nap_republican_rebels size = $size$ } }
4862
+ likely_spawns_nationalist_rebels = { spawn_rebels = { type = nationalist_rebels size = $size$ } }
4863
+ likely_spawns_noble_rebels = { spawn_rebels = { type = noble_rebels size = $size$ } }
4864
+ likely_spawns_norse_pagan_reformed_rebels = { spawn_rebels = { type = norse_pagan_reformed_rebels size = $size$ } }
4865
+ likely_spawns_orthodox_rebels = { spawn_rebels = { type = orthodox_rebels size = $size$ } }
4866
+ likely_spawns_particularist_rebels = { spawn_rebels = { type = particularist_rebels size = $size$ } }
4867
+ likely_spawns_leadered_peasant_rebels = { spawn_rebels = { type = leadered_peasant_rebels size = $size$ } }
4868
+ likely_spawns_polish_noble_rebels = { spawn_rebels = { type = polish_noble_rebels size = $size$ } }
4869
+ likely_spawns_pretender_rebels = { spawn_rebels = { type = pretender_rebels size = $size$ } }
4870
+ likely_spawns_protestant_rebels = { spawn_rebels = { type = protestant_rebels size = $size$ } }
4871
+ likely_spawns_reformed_rebels = { spawn_rebels = { type = reformed_rebels size = $size$ } }
4872
+ likely_spawns_revolutionary_rebels = { spawn_rebels = { type = revolutionary_rebels size = $size$ } }
4873
+ likely_spawns_ronin_rebels = { spawn_rebels = { type = ronin_rebels size = $size$ } }
4874
+ likely_spawns_shamanism_rebels = { spawn_rebels = { type = shamanism_rebels size = $size$ } }
4875
+ likely_spawns_shiite_rebels = { spawn_rebels = { type = shiite_rebels size = $size$ } }
4876
+ likely_spawns_shinto_rebels = { spawn_rebels = { type = shinto_rebels size = $size$ } }
4877
+ likely_spawns_sikhism_rebels = { spawn_rebels = { type = sikhism_rebels size = $size$ } }
4878
+ likely_spawns_sunni_rebels = { spawn_rebels = { type = sunni_rebels size = $size$ } }
4879
+ likely_spawns_tengri_pagan_reformed_rebels = { spawn_rebels = { type = tengri_pagan_reformed_rebels size = $size$ } }
4880
+ likely_spawns_totemism_rebels = { spawn_rebels = { type = totemism_rebels size = $size$ } }
4881
+ likely_spawns_tribal_rebels = { spawn_rebels = { type = tribal_rebels size = $size$ } }
4882
+ likely_spawns_vajrayana_rebels = { spawn_rebels = { type = vajrayana_rebels size = $size$ } }
4883
+ likely_spawns_zoroastrian_rebels = { spawn_rebels = { type = zoroastrian_rebels size = $size$ } }
4884
+ }
4885
+ hidden_effect = {
4886
+ clr_province_flag = likely_spawns_anglican_rebels
4887
+ clr_province_flag = likely_spawns_animism_rebels
4888
+ clr_province_flag = likely_spawns_anti_tax_rebels
4889
+ clr_province_flag = likely_spawns_buddhism_rebels
4890
+ clr_province_flag = likely_spawns_catholic_rebels
4891
+ clr_province_flag = likely_spawns_confucianism_rebels
4892
+ clr_province_flag = likely_spawns_coptic_rebels
4893
+ clr_province_flag = likely_spawns_cossack_rebels
4894
+ clr_province_flag = likely_spawns_dreamtime_rebels
4895
+ clr_province_flag = likely_spawns_eunuch_rebels
4896
+ clr_province_flag = likely_spawns_heretic_rebels
4897
+ clr_province_flag = likely_spawns_hinduism_rebels
4898
+ clr_province_flag = likely_spawns_hussite_rebels
4899
+ clr_province_flag = likely_spawns_ibadi_rebels
4900
+ clr_province_flag = likely_spawns_ikko_ikki_rebels
4901
+ clr_province_flag = likely_spawns_inti_rebels
4902
+ clr_province_flag = likely_spawns_janissary_rebels
4903
+ clr_province_flag = likely_spawns_jewish_rebels
4904
+ clr_province_flag = likely_spawns_lollard_rebels
4905
+ clr_province_flag = likely_spawns_mahayana_rebels
4906
+ clr_province_flag = likely_spawns_maya_rebels
4907
+ clr_province_flag = likely_spawns_nahuatl_rebels
4908
+ clr_province_flag = likely_spawns_nap_republican_rebels
4909
+ clr_province_flag = likely_spawns_nationalist_rebels
4910
+ clr_province_flag = likely_spawns_noble_rebels
4911
+ clr_province_flag = likely_spawns_norse_pagan_reformed_rebels
4912
+ clr_province_flag = likely_spawns_orthodox_rebels
4913
+ clr_province_flag = likely_spawns_particularist_rebels
4914
+ clr_province_flag = likely_spawns_leadered_peasant_rebels
4915
+ clr_province_flag = likely_spawns_polish_noble_rebels
4916
+ clr_province_flag = likely_spawns_pretender_rebels
4917
+ clr_province_flag = likely_spawns_protestant_rebels
4918
+ clr_province_flag = likely_spawns_reformed_rebels
4919
+ clr_province_flag = likely_spawns_revolutionary_rebels
4920
+ clr_province_flag = likely_spawns_ronin_rebels
4921
+ clr_province_flag = likely_spawns_shamanism_rebels
4922
+ clr_province_flag = likely_spawns_shiite_rebels
4923
+ clr_province_flag = likely_spawns_shinto_rebels
4924
+ clr_province_flag = likely_spawns_sikhism_rebels
4925
+ clr_province_flag = likely_spawns_sunni_rebels
4926
+ clr_province_flag = likely_spawns_tengri_pagan_reformed_rebels
4927
+ clr_province_flag = likely_spawns_totemism_rebels
4928
+ clr_province_flag = likely_spawns_tribal_rebels
4929
+ clr_province_flag = likely_spawns_vajrayana_rebels
4930
+ clr_province_flag = likely_spawns_zoroastrian_rebels
4931
+ }
4932
+ }
4933
+
4934
+ ottoman_power_struggle_effect = {
4935
+ [[legitimacy_effect]
4936
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_legitimacy = -30 }
4937
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_legitimacy = -27 }
4938
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_legitimacy = -24 }
4939
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_legitimacy = -21 }
4940
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_legitimacy = -18 }
4941
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_legitimacy = -15 }
4942
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_legitimacy = -12 }
4943
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_legitimacy = -9 }
4944
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_legitimacy = -6 }
4945
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_legitimacy = -3 }
4946
+ else = { add_legitimacy = -1 }
4947
+ ]
4948
+ [[republican_tradition_effect]
4949
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_republican_tradition = -10 }
4950
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_republican_tradition = -9 }
4951
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_republican_tradition = -8 }
4952
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_republican_tradition = -7 }
4953
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_republican_tradition = -6 }
4954
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_republican_tradition = -5 }
4955
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_republican_tradition = -4 }
4956
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_republican_tradition = -3 }
4957
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_republican_tradition = -2 }
4958
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_republican_tradition = -1 }
4959
+ else = { add_republican_tradition = -1 }
4960
+ ]
4961
+ [[corruption_effect]
4962
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_corruption = 2.75 }
4963
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_corruption = 2.50 }
4964
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_corruption = 2.00 }
4965
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_corruption = 1.75 }
4966
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_corruption = 1.50 }
4967
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_corruption = 1.25 }
4968
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_corruption = 1.00 }
4969
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_corruption = 0.75 }
4970
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_corruption = 0.50 }
4971
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_corruption = 0.25 }
4972
+ else = { add_corruption = 0.1 }
4973
+ ]
4974
+ [[monarch_power_effect]
4975
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_adm_power = -125 add_dip_power = -125 add_mil_power = -125 }
4976
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } random_list = { 1 = { add_adm_power = -100 } 1 = { add_dip_power = -100 } 1 = { add_mil_power = -100 } } }
4977
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } random_list = { 1 = { add_adm_power = -90 } 1 = { add_dip_power = -90 } 1 = { add_mil_power = -90 } } }
4978
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } random_list = { 1 = { add_adm_power = -80 } 1 = { add_dip_power = -80 } 1 = { add_mil_power = -80 } } }
4979
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } random_list = { 1 = { add_adm_power = -70 } 1 = { add_dip_power = -70 } 1 = { add_mil_power = -70 } } }
4980
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } random_list = { 1 = { add_adm_power = -60 } 1 = { add_dip_power = -60 } 1 = { add_mil_power = -60 } } }
4981
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } random_list = { 1 = { add_adm_power = -50 } 1 = { add_dip_power = -50 } 1 = { add_mil_power = -50 } } }
4982
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } random_list = { 1 = { add_adm_power = -40 } 1 = { add_dip_power = -40 } 1 = { add_mil_power = -40 } } }
4983
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } random_list = { 1 = { add_adm_power = -30 } 1 = { add_dip_power = -30 } 1 = { add_mil_power = -30 } } }
4984
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } random_list = { 1 = { add_adm_power = -20 } 1 = { add_dip_power = -20 } 1 = { add_mil_power = -20 } } }
4985
+ else = { random_list = { 1 = { add_adm_power = -10 } 1 = { add_dip_power = -10 } 1 = { add_mil_power = -10 } } }
4986
+ ]
4987
+ [[prestige_effect]
4988
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_prestige = -30 }
4989
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_prestige = -27 }
4990
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_prestige = -24 }
4991
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_prestige = -21 }
4992
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_prestige = -18 }
4993
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_prestige = -15 }
4994
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_prestige = -12 }
4995
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_prestige = -9 }
4996
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_prestige = -6 }
4997
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_prestige = -3 }
4998
+ else = { add_prestige = -1 }
4999
+ ]
5000
+ [[treasury_effect]
5001
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_years_of_income = -0.75 }
5002
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_years_of_income = -0.50 }
5003
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_years_of_income = -0.45 }
5004
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_years_of_income = -0.40 }
5005
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_years_of_income = -0.35 }
5006
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_years_of_income = -0.30 }
5007
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_years_of_income = -0.25 }
5008
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_years_of_income = -0.20 }
5009
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_years_of_income = -0.15 }
5010
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_years_of_income = -0.10 }
5011
+ else = { add_years_of_income = -0.05 }
5012
+ ]
5013
+ [[inflation_effect]
5014
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } add_inflation = 3.00 }
5015
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } add_inflation = 2.50 }
5016
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } add_inflation = 2.25 }
5017
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } add_inflation = 2.00 }
5018
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } add_inflation = 1.75 }
5019
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } add_inflation = 1.50 }
5020
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } add_inflation = 1.25 }
5021
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } add_inflation = 1.00 }
5022
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } add_inflation = 0.75 }
5023
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } add_inflation = 0.50 }
5024
+ else = { add_inflation = 0.25 }
5025
+ ]
5026
+
5027
+ hidden_effect = {
5028
+ random_list = {
5029
+ 10 = { change_variable = { tur_power_struggle_intesity = 2 } }
5030
+ 80 = { change_variable = { tur_power_struggle_intesity = 1 } }
5031
+ 5 = { }
5032
+ 4 = { change_variable = { tur_power_struggle_intesity = -1 } }
5033
+ 1 = { change_variable = { tur_power_struggle_intesity = -2 } }
5034
+ }
5035
+ }
5036
+ }
5037
+
5038
+ ottoman_power_struggle_rebel_effect = {
5039
+ if = { limit = { check_variable = { tur_power_struggle_intesity = 100 } } $province_1$ = { spawn_likely_rebels = { size = 3 } } $province_2$ = { spawn_likely_rebels = { size = 3 } } $province_3$ = { spawn_likely_rebels = { size = 3 } } $province_4$ = { spawn_likely_rebels = { size = 3 } } add_stability = -1 }
5040
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 90 } } $province_1$ = { spawn_likely_rebels = { size = 3 } } $province_2$ = { spawn_likely_rebels = { size = 3 } } $province_3$ = { spawn_likely_rebels = { size = 2 } } $province_4$ = { spawn_likely_rebels = { size = 2 } } }
5041
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 80 } } $province_1$ = { spawn_likely_rebels = { size = 3 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } $province_3$ = { spawn_likely_rebels = { size = 2 } } $province_4$ = { spawn_likely_rebels = { size = 2 } } }
5042
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 70 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } $province_3$ = { spawn_likely_rebels = { size = 2 } } $province_4$ = { spawn_likely_rebels = { size = 2 } } }
5043
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 60 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } $province_3$ = { spawn_likely_rebels = { size = 2 } } $province_4$ = { spawn_likely_rebels = { size = 1 } } }
5044
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 50 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } $province_3$ = { spawn_likely_rebels = { size = 2 } } }
5045
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 40 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } $province_3$ = { spawn_likely_rebels = { size = 1 } } }
5046
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 30 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 2 } } }
5047
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 20 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } $province_2$ = { spawn_likely_rebels = { size = 1 } } }
5048
+ else_if = { limit = { check_variable = { tur_power_struggle_intesity = 10 } } $province_1$ = { spawn_likely_rebels = { size = 2 } } }
5049
+ else = { $province_1$ = { spawn_likely_rebels = { size = 1 } } }
5050
+
5051
+ hidden_effect = {
5052
+ random_list = {
5053
+ 10 = { change_variable = { tur_power_struggle_intesity = 2 } }
5054
+ 80 = { change_variable = { tur_power_struggle_intesity = 1 } }
5055
+ 5 = { }
5056
+ 4 = { change_variable = { tur_power_struggle_intesity = -1 } }
5057
+ 1 = { change_variable = { tur_power_struggle_intesity = -2 } }
5058
+ }
5059
+ }
5060
+ }
5061
+
5062
+ #Supports the following trade goods
5063
+ ###################################
5064
+ # grain
5065
+ # wine
5066
+ # wool
5067
+ # cloth
5068
+ # fish
5069
+ # fur
5070
+ # salt
5071
+ # naval_supplies
5072
+ # copper
5073
+ # gold
5074
+ # iron
5075
+ # slaves
5076
+ # ivory
5077
+ # tea
5078
+ # chinaware
5079
+ # spices
5080
+ # coffee
5081
+ # cotton
5082
+ # sugar
5083
+ # tobacco
5084
+ # cocoa
5085
+ # silk
5086
+ # dyes
5087
+ # tropical_wood
5088
+ # livestock
5089
+ # incense
5090
+ # glass
5091
+ # paper
5092
+ # gems
5093
+ # coal
5094
+ # cloves
5095
+ increase_trade_goods_discovery = {
5096
+ custom_tooltip = increase_trade_goods_discovery_$trade_goods$_tt
5097
+ set_country_flag = increased_trade_goods_discovery_$trade_goods$
5098
+ }
5099
+
5100
+ increase_gold_discovery = {
5101
+ custom_tooltip = por_bandeirantes_tooltip
5102
+ set_country_flag = por_bandeirantes_flag
5103
+ }
5104
+
5105
+ enable_improved_consecration = {
5106
+ if = {
5107
+ limit = {
5108
+ has_dlc = "Third Rome"
5109
+ religion = orthodox
5110
+ }
5111
+ custom_tooltip = enable_improved_consecration_tt
5112
+ }
5113
+ hidden_effect = {
5114
+ set_country_flag = has_improved_consecration
5115
+ every_owned_province = {
5116
+ limit = {
5117
+ has_state_patriach = yes
5118
+ }
5119
+ add_province_modifier = {
5120
+ name = consecrated_ground
5121
+ duration = -1
5122
+ hidden = yes
5123
+ }
5124
+ }
5125
+ }
5126
+ }
5127
+
5128
+ remove_dev_from_building = {
5129
+ if = {
5130
+ limit = {
5131
+ FROM = { full_idea_group = economic_ideas }
5132
+ gained_dev_from_eco_building = { building = $building$ }
5133
+ }
5134
+ add_base_$type$ = -$value$
5135
+ if = {
5136
+ limit = {
5137
+ NOT = { base_$type$ = 1 }
5138
+ }
5139
+ set_base_$type$ = 1
5140
+ }
5141
+ hidden_effect = {
5142
+ clr_province_flag = built_eco_dev_$building$
5143
+ }
5144
+ }
5145
+ }
5146
+
5147
+ add_dev_from_building = {
5148
+ if = {
5149
+ limit = {
5150
+ FROM = { full_idea_group = economic_ideas }
5151
+ NOT = { gained_dev_from_eco_building = { building = $building$ } }
5152
+ }
5153
+ add_base_$type$ = $value$
5154
+ hidden_effect = {
5155
+ set_province_flag = built_eco_dev_$building$
5156
+ }
5157
+ }
5158
+ }
5159
+
5160
+ #type = army/navy
5161
+ #leader = general/conquistador/admiral/explorer
5162
+ create_leader_scaling_with_tradition = {
5163
+ if = {
5164
+ limit = {
5165
+ $type$_tradition = 80
5166
+ }
5167
+ create_$leader$ = {
5168
+ tradition = 100
5169
+ }
5170
+ }
5171
+ else_if = {
5172
+ limit = {
5173
+ $type$_tradition = 70
5174
+ }
5175
+ create_$leader$ = {
5176
+ tradition = 90
5177
+ }
5178
+ }
5179
+ else_if = {
5180
+ limit = {
5181
+ $type$_tradition = 60
5182
+ }
5183
+ create_$leader$ = {
5184
+ tradition = 80
5185
+ }
5186
+ }
5187
+ else_if = {
5188
+ limit = {
5189
+ $type$_tradition = 50
5190
+ }
5191
+ create_$leader$ = {
5192
+ tradition = 70
5193
+ }
5194
+ }
5195
+ else_if = {
5196
+ limit = {
5197
+ $type$_tradition = 40
5198
+ }
5199
+ create_$leader$ = {
5200
+ tradition = 60
5201
+ }
5202
+ }
5203
+ else_if = {
5204
+ limit = {
5205
+ $type$_tradition = 30
5206
+ }
5207
+ create_$leader$ = {
5208
+ tradition = 50
5209
+ }
5210
+ }
5211
+ else = {
5212
+ create_$leader$ = {
5213
+ tradition = 40
5214
+ }
5215
+ }
5216
+ custom_tooltip = create_leader_scaling_with_tradition_tt
5217
+ }
5218
+
5219
+ #type = heavy_ship/light_ship/galley/transport
5220
+ add_ship_construction_scaled_to_ports = {
5221
+ random_owned_province = {
5222
+ limit = {
5223
+ has_port = yes
5224
+ }
5225
+ if = {
5226
+ limit = {
5227
+ owner = {
5228
+ num_of_ports = 10
5229
+ }
5230
+ }
5231
+ add_unit_construction = {
5232
+ amount = 5
5233
+ type = $type$
5234
+ speed = 0.5
5235
+ cost = 0
5236
+ }
5237
+ }
5238
+ else_if = {
5239
+ limit = {
5240
+ owner = {
5241
+ num_of_ports = 8
5242
+ }
5243
+ }
5244
+ add_unit_construction = {
5245
+ amount = 4
5246
+ type = $type$
5247
+ speed = 0.5
5248
+ cost = 0
5249
+ }
5250
+ }
5251
+ else_if = {
5252
+ limit = {
5253
+ owner = {
5254
+ num_of_ports = 6
5255
+ }
5256
+ }
5257
+ add_unit_construction = {
5258
+ amount = 3
5259
+ type = $type$
5260
+ speed = 0.5
5261
+ cost = 0
5262
+ }
5263
+ }
5264
+ else_if = {
5265
+ limit = {
5266
+ owner = {
5267
+ num_of_ports = 4
5268
+ }
5269
+ }
5270
+ add_unit_construction = {
5271
+ amount = 2
5272
+ type = $type$
5273
+ speed = 0.5
5274
+ cost = 0
5275
+ }
5276
+ }
5277
+ add_unit_construction = {
5278
+ amount = 1
5279
+ type = $type$
5280
+ speed = 0.5
5281
+ cost = 0
5282
+ }
5283
+ }
5284
+ }
5285
+
5286
+ update_entire_culture = {
5287
+ change_primary_culture = $culture$_new
5288
+ set_ruler_culture = $culture$_new
5289
+ if = {
5290
+ limit = {
5291
+ has_heir = yes
5292
+ }
5293
+ set_heir_culture = $culture$_new
5294
+ }
5295
+ if = {
5296
+ limit = {
5297
+ has_consort = yes
5298
+ consort_culture = $culture$
5299
+ }
5300
+ set_consort_culture = $culture$_new
5301
+ }
5302
+ hidden_effect = {
5303
+ every_province = {
5304
+ limit = {
5305
+ culture = $culture$
5306
+ }
5307
+ change_culture = $culture$_new
5308
+ }
5309
+ every_country = {
5310
+ limit = {
5311
+ primary_culture = $culture$
5312
+ }
5313
+ change_primary_culture = $culture$_new
5314
+ set_ruler_culture = $culture$_new
5315
+ if = {
5316
+ limit = {
5317
+ has_heir = yes
5318
+ }
5319
+ set_heir_culture = $culture$_new
5320
+ }
5321
+ if = {
5322
+ limit = {
5323
+ has_consort = yes
5324
+ consort_culture = $culture$
5325
+ }
5326
+ set_consort_culture = $culture$_new
5327
+ }
5328
+ }
5329
+ set_global_flag = updated_$culture$_flag
5330
+ [[clear_previous_accepted_culture]
5331
+ remove_accepted_culture = $culture$
5332
+ ]
5333
+ }
5334
+ }
5335
+
5336
+ update_entire_culture_foreign = {
5337
+ hidden_effect = {
5338
+ every_province = {
5339
+ limit = {
5340
+ culture = $culture$
5341
+ }
5342
+ change_culture = $culture$_new
5343
+ }
5344
+ every_country = {
5345
+ limit = {
5346
+ primary_culture = $culture$
5347
+ }
5348
+ change_primary_culture = $culture$_new
5349
+ set_ruler_culture = $culture$_new
5350
+ if = {
5351
+ limit = {
5352
+ has_heir = yes
5353
+ }
5354
+ set_heir_culture = $culture$_new
5355
+ }
5356
+ if = {
5357
+ limit = {
5358
+ has_consort = yes
5359
+ consort_culture = $culture$
5360
+ }
5361
+ set_consort_culture = $culture$_new
5362
+ }
5363
+ [[clear_previous_accepted_culture]
5364
+ remove_accepted_culture = $culture$
5365
+ ]
5366
+ }
5367
+ set_global_flag = updated_$culture$_flag
5368
+ }
5369
+ }
5370
+
5371
+ update_entire_culture_group = {
5372
+ change_primary_culture = $culture$_new
5373
+ set_ruler_culture = $culture$_new
5374
+ if = {
5375
+ limit = {
5376
+ has_heir = yes
5377
+ }
5378
+ set_heir_culture = $culture$_new
5379
+ }
5380
+ if = {
5381
+ limit = {
5382
+ has_consort = yes
5383
+ OR = {
5384
+ consort_culture = $culture1$
5385
+ [[culture2]consort_culture = $culture2$]
5386
+ [[culture3]consort_culture = $culture3$]
5387
+ [[culture4]consort_culture = $culture4$]
5388
+ [[culture5]consort_culture = $culture5$]
5389
+ [[culture6]consort_culture = $culture6$]
5390
+ [[culture7]consort_culture = $culture7$]
5391
+ [[culture8]consort_culture = $culture8$]
5392
+ [[culture9]consort_culture = $culture9$]
5393
+ [[culture10]consort_culture = $culture10$]
5394
+ [[culture11]consort_culture = $culture11$]
5395
+ [[culture11]consort_culture = $culture11$]
5396
+ [[culture12]consort_culture = $culture12$]
5397
+ [[culture13]consort_culture = $culture13$]
5398
+ [[culture14]consort_culture = $culture14$]
5399
+ [[culture15]consort_culture = $culture15$]
5400
+ [[culture16]consort_culture = $culture16$]
5401
+ [[culture17]consort_culture = $culture17$]
5402
+ [[culture18]consort_culture = $culture18$]
5403
+ [[culture19]consort_culture = $culture19$]
5404
+ [[culture20]consort_culture = $culture20$]
5405
+ }
5406
+ consort_culture = $culture$
5407
+ }
5408
+ set_consort_culture = $culture$_new
5409
+ }
5410
+ hidden_effect = {
5411
+ every_province = {
5412
+ limit = {
5413
+ OR = {
5414
+ culture = $culture1$
5415
+ [[culture2]culture = $culture2$]
5416
+ [[culture3]culture = $culture3$]
5417
+ [[culture4]culture = $culture4$]
5418
+ [[culture5]culture = $culture5$]
5419
+ [[culture6]culture = $culture6$]
5420
+ [[culture7]culture = $culture7$]
5421
+ [[culture8]culture = $culture8$]
5422
+ [[culture9]culture = $culture9$]
5423
+ [[culture10]culture = $culture10$]
5424
+ [[culture11]culture = $culture11$]
5425
+ [[culture11]culture = $culture11$]
5426
+ [[culture12]culture = $culture12$]
5427
+ [[culture13]culture = $culture13$]
5428
+ [[culture14]culture = $culture14$]
5429
+ [[culture15]culture = $culture15$]
5430
+ [[culture16]culture = $culture16$]
5431
+ [[culture17]culture = $culture17$]
5432
+ [[culture18]culture = $culture18$]
5433
+ [[culture19]culture = $culture19$]
5434
+ [[culture20]culture = $culture20$]
5435
+ }
5436
+ }
5437
+ change_culture = $culture$_new
5438
+ }
5439
+ every_country = {
5440
+ limit = {
5441
+ OR = {
5442
+ primary_culture = $culture1$
5443
+ [[culture2]primary_culture = $culture2$]
5444
+ [[culture3]primary_culture = $culture3$]
5445
+ [[culture4]primary_culture = $culture4$]
5446
+ [[culture5]primary_culture = $culture5$]
5447
+ [[culture6]primary_culture = $culture6$]
5448
+ [[culture7]primary_culture = $culture7$]
5449
+ [[culture8]primary_culture = $culture8$]
5450
+ [[culture9]primary_culture = $culture9$]
5451
+ [[culture10]primary_culture = $culture10$]
5452
+ [[culture11]primary_culture = $culture11$]
5453
+ [[culture11]primary_culture = $culture11$]
5454
+ [[culture12]primary_culture = $culture12$]
5455
+ [[culture13]primary_culture = $culture13$]
5456
+ [[culture14]primary_culture = $culture14$]
5457
+ [[culture15]primary_culture = $culture15$]
5458
+ [[culture16]primary_culture = $culture16$]
5459
+ [[culture17]primary_culture = $culture17$]
5460
+ [[culture18]primary_culture = $culture18$]
5461
+ [[culture19]primary_culture = $culture19$]
5462
+ [[culture20]primary_culture = $culture20$]
5463
+ }
5464
+ }
5465
+ change_primary_culture = $culture$_new
5466
+ set_ruler_culture = $culture$_new
5467
+ if = {
5468
+ limit = {
5469
+ has_heir = yes
5470
+ }
5471
+ set_heir_culture = $culture$_new
5472
+ }
5473
+ if = {
5474
+ limit = {
5475
+ has_consort = yes
5476
+ OR = {
5477
+ consort_culture = $culture1$
5478
+ [[culture2]consort_culture = $culture2$]
5479
+ [[culture3]consort_culture = $culture3$]
5480
+ [[culture4]consort_culture = $culture4$]
5481
+ [[culture5]consort_culture = $culture5$]
5482
+ [[culture6]consort_culture = $culture6$]
5483
+ [[culture7]consort_culture = $culture7$]
5484
+ [[culture8]consort_culture = $culture8$]
5485
+ [[culture9]consort_culture = $culture9$]
5486
+ [[culture10]consort_culture = $culture10$]
5487
+ [[culture11]consort_culture = $culture11$]
5488
+ [[culture11]consort_culture = $culture11$]
5489
+ [[culture12]consort_culture = $culture12$]
5490
+ [[culture13]consort_culture = $culture13$]
5491
+ [[culture14]consort_culture = $culture14$]
5492
+ [[culture15]consort_culture = $culture15$]
5493
+ [[culture16]consort_culture = $culture16$]
5494
+ [[culture17]consort_culture = $culture17$]
5495
+ [[culture18]consort_culture = $culture18$]
5496
+ [[culture19]consort_culture = $culture19$]
5497
+ [[culture20]consort_culture = $culture20$]
5498
+ }
5499
+ }
5500
+ set_consort_culture = $culture$_new
5501
+ }
5502
+ [[clear_previous_accepted_culture]
5503
+ remove_accepted_culture = $culture$
5504
+ ]
5505
+ }
5506
+ set_global_flag = updated_$culture$_flag
5507
+ }
5508
+ }
5509
+
5510
+ create_new_culture_group = {
5511
+ change_primary_culture = $culture$_new
5512
+ set_ruler_culture = $culture$_new
5513
+ if = {
5514
+ limit = {
5515
+ has_heir = yes
5516
+ }
5517
+ set_heir_culture = $culture$_new
5518
+ }
5519
+ if = {
5520
+ limit = {
5521
+ has_consort = yes
5522
+ OR = {
5523
+ consort_culture = $culture$
5524
+ [[culture2]consort_culture = $culture2$]
5525
+ [[culture3]consort_culture = $culture3$]
5526
+ [[culture4]consort_culture = $culture4$]
5527
+ [[culture5]consort_culture = $culture5$]
5528
+ [[culture6]consort_culture = $culture6$]
5529
+ [[culture7]consort_culture = $culture7$]
5530
+ [[culture8]consort_culture = $culture8$]
5531
+ [[culture9]consort_culture = $culture9$]
5532
+ [[culture10]consort_culture = $culture10$]
5533
+ [[culture11]consort_culture = $culture11$]
5534
+ [[culture11]consort_culture = $culture11$]
5535
+ [[culture12]consort_culture = $culture12$]
5536
+ [[culture13]consort_culture = $culture13$]
5537
+ [[culture14]consort_culture = $culture14$]
5538
+ [[culture15]consort_culture = $culture15$]
5539
+ [[culture16]consort_culture = $culture16$]
5540
+ [[culture17]consort_culture = $culture17$]
5541
+ [[culture18]consort_culture = $culture18$]
5542
+ [[culture19]consort_culture = $culture19$]
5543
+ [[culture20]consort_culture = $culture20$]
5544
+ }
5545
+ consort_culture = $culture$
5546
+ }
5547
+ set_consort_culture = $culture$_new
5548
+ }
5549
+ hidden_effect = {
5550
+ every_province = {
5551
+ limit = {
5552
+ OR = {
5553
+ culture = $culture$
5554
+ [[culture2]culture = $culture2$]
5555
+ [[culture3]culture = $culture3$]
5556
+ [[culture4]culture = $culture4$]
5557
+ [[culture5]culture = $culture5$]
5558
+ [[culture6]culture = $culture6$]
5559
+ [[culture7]culture = $culture7$]
5560
+ [[culture8]culture = $culture8$]
5561
+ [[culture9]culture = $culture9$]
5562
+ [[culture10]culture = $culture10$]
5563
+ [[culture11]culture = $culture11$]
5564
+ [[culture11]culture = $culture11$]
5565
+ [[culture12]culture = $culture12$]
5566
+ [[culture13]culture = $culture13$]
5567
+ [[culture14]culture = $culture14$]
5568
+ [[culture15]culture = $culture15$]
5569
+ [[culture16]culture = $culture16$]
5570
+ [[culture17]culture = $culture17$]
5571
+ [[culture18]culture = $culture18$]
5572
+ [[culture19]culture = $culture19$]
5573
+ [[culture20]culture = $culture20$]
5574
+ }
5575
+ }
5576
+ trigger_switch = {
5577
+ on_trigger = culture
5578
+ $culture$ = { change_culture = $culture$_new }
5579
+ [[culture2]$culture2$ = { change_culture = $culture2$_new }]
5580
+ [[culture3]$culture3$ = { change_culture = $culture3$_new }]
5581
+ [[culture4]$culture4$ = { change_culture = $culture4$_new }]
5582
+ [[culture5]$culture5$ = { change_culture = $culture5$_new }]
5583
+ [[culture6]$culture6$ = { change_culture = $culture6$_new }]
5584
+ [[culture7]$culture7$ = { change_culture = $culture7$_new }]
5585
+ [[culture8]$culture8$ = { change_culture = $culture8$_new }]
5586
+ [[culture9]$culture9$ = { change_culture = $culture9$_new }]
5587
+ [[culture10]$culture10$ = { change_culture = $culture10$_new }]
5588
+ [[culture11]$culture11$ = { change_culture = $culture11$_new }]
5589
+ [[culture11]$culture11$ = { change_culture = $culture11$_new }]
5590
+ [[culture12]$culture12$ = { change_culture = $culture12$_new }]
5591
+ [[culture13]$culture13$ = { change_culture = $culture13$_new }]
5592
+ [[culture14]$culture14$ = { change_culture = $culture14$_new }]
5593
+ [[culture15]$culture15$ = { change_culture = $culture15$_new }]
5594
+ [[culture16]$culture16$ = { change_culture = $culture16$_new }]
5595
+ [[culture17]$culture17$ = { change_culture = $culture17$_new }]
5596
+ [[culture18]$culture18$ = { change_culture = $culture18$_new }]
5597
+ [[culture19]$culture19$ = { change_culture = $culture19$_new }]
5598
+ [[culture20]$culture20$ = { change_culture = $culture20$_new }]
5599
+ }
5600
+ }
5601
+ every_country = {
5602
+ limit = {
5603
+ OR = {
5604
+ primary_culture = $culture$
5605
+ [[culture2]primary_culture = $culture2$]
5606
+ [[culture3]primary_culture = $culture3$]
5607
+ [[culture4]primary_culture = $culture4$]
5608
+ [[culture5]primary_culture = $culture5$]
5609
+ [[culture6]primary_culture = $culture6$]
5610
+ [[culture7]primary_culture = $culture7$]
5611
+ [[culture8]primary_culture = $culture8$]
5612
+ [[culture9]primary_culture = $culture9$]
5613
+ [[culture10]primary_culture = $culture10$]
5614
+ [[culture11]primary_culture = $culture11$]
5615
+ [[culture11]primary_culture = $culture11$]
5616
+ [[culture12]primary_culture = $culture12$]
5617
+ [[culture13]primary_culture = $culture13$]
5618
+ [[culture14]primary_culture = $culture14$]
5619
+ [[culture15]primary_culture = $culture15$]
5620
+ [[culture16]primary_culture = $culture16$]
5621
+ [[culture17]primary_culture = $culture17$]
5622
+ [[culture18]primary_culture = $culture18$]
5623
+ [[culture19]primary_culture = $culture19$]
5624
+ [[culture20]primary_culture = $culture20$]
5625
+ }
5626
+ }
5627
+ trigger_switch = {
5628
+ on_trigger = primary_culture
5629
+ $culture$ = {
5630
+ change_primary_culture = $culture$_new
5631
+ set_ruler_culture = $culture$_new
5632
+ if = { limit = { has_heir = yes } set_heir_culture = $culture$_new }
5633
+ if = { limit = { has_consort = yes } set_consort_culture = $culture$_new }
5634
+ }
5635
+ [[culture2]$culture2$ = {
5636
+ change_primary_culture = $culture2$_new
5637
+ set_ruler_culture = $culture2$_new
5638
+ if = { limit = { has_heir = yes } set_heir_culture = $culture2$ }
5639
+ if = { limit = { has_consort = yes } set_consort_culture = $culture2$_new }
5640
+ }]
5641
+ [[culture3]$culture3$ = {
5642
+ change_primary_culture = $culture3$_new
5643
+ set_ruler_culture = $culture3$_new
5644
+ if = { limit = { has_heir = yes } set_heir_culture = $culture3$ }
5645
+ if = { limit = { has_consort = yes } set_consort_culture = $culture3$_new }
5646
+ }]
5647
+ [[culture4]$culture4$ = {
5648
+ change_primary_culture = $culture4$_new
5649
+ set_ruler_culture = $culture4$_new
5650
+ if = { limit = { has_heir = yes } set_heir_culture = $culture4$ }
5651
+ if = { limit = { has_consort = yes } set_consort_culture = $culture4$_new }
5652
+ }]
5653
+ [[culture5]$culture5$ = {
5654
+ change_primary_culture = $culture5$_new
5655
+ set_ruler_culture = $culture5$_new
5656
+ if = { limit = { has_heir = yes } set_heir_culture = $culture5$ }
5657
+ if = { limit = { has_consort = yes } set_consort_culture = $culture5$_new }
5658
+ }]
5659
+ [[culture6]$culture6$ = {
5660
+ change_primary_culture = $culture6$_new
5661
+ set_ruler_culture = $culture6$_new
5662
+ if = { limit = { has_heir = yes } set_heir_culture = $culture6$ }
5663
+ if = { limit = { has_consort = yes } set_consort_culture = $culture6$_new }
5664
+ }]
5665
+ [[culture7]$culture7$ = {
5666
+ change_primary_culture = $culture7$_new
5667
+ set_ruler_culture = $culture7$_new
5668
+ if = { limit = { has_heir = yes } set_heir_culture = $culture7$ }
5669
+ if = { limit = { has_consort = yes } set_consort_culture = $culture7$_new }
5670
+ }]
5671
+ [[culture8]$culture8$ = {
5672
+ change_primary_culture = $culture8$_new
5673
+ set_ruler_culture = $culture8$_new
5674
+ if = { limit = { has_heir = yes } set_heir_culture = $culture8$ }
5675
+ if = { limit = { has_consort = yes } set_consort_culture = $culture8$_new }
5676
+ }]
5677
+ [[culture9]$culture9$ = {
5678
+ change_primary_culture = $culture9$_new
5679
+ set_ruler_culture = $culture9$_new
5680
+ if = { limit = { has_heir = yes } set_heir_culture = $culture9$ }
5681
+ if = { limit = { has_consort = yes } set_consort_culture = $culture9$_new }
5682
+ }]
5683
+ [[culture10]$culture10$ = {
5684
+ change_primary_culture = $culture10$_new
5685
+ set_ruler_culture = $culture10$_new
5686
+ if = { limit = { has_heir = yes } set_heir_culture = $culture10$ }
5687
+ if = { limit = { has_consort = yes } set_consort_culture = $culture10$_new }
5688
+ }]
5689
+ [[culture11]$culture11$ = {
5690
+ change_primary_culture = $culture11$_new
5691
+ set_ruler_culture = $culture11$_new
5692
+ if = { limit = { has_heir = yes } set_heir_culture = $culture11$ }
5693
+ if = { limit = { has_consort = yes } set_consort_culture = $culture11$_new }
5694
+ }]
5695
+ [[culture11]$culture11$ = {
5696
+ change_primary_culture = $culture11$_new
5697
+ set_ruler_culture = $culture11$_new
5698
+ if = { limit = { has_heir = yes } set_heir_culture = $culture11$ }
5699
+ if = { limit = { has_consort = yes } set_consort_culture = $culture11$_new }
5700
+ }]
5701
+ [[culture12]$culture12$ = {
5702
+ change_primary_culture = $culture12$_new
5703
+ set_ruler_culture = $culture12$_new
5704
+ if = { limit = { has_heir = yes } set_heir_culture = $culture12$ }
5705
+ if = { limit = { has_consort = yes } set_consort_culture = $culture12$_new }
5706
+ }]
5707
+ [[culture13]$culture13$ = {
5708
+ change_primary_culture = $culture13$_new
5709
+ set_ruler_culture = $culture13$_new
5710
+ if = { limit = { has_heir = yes } set_heir_culture = $culture13$ }
5711
+ if = { limit = { has_consort = yes } set_consort_culture = $culture13$_new }
5712
+ }]
5713
+ [[culture14]$culture14$ = {
5714
+ change_primary_culture = $culture14$_new
5715
+ set_ruler_culture = $culture14$_new
5716
+ if = { limit = { has_heir = yes } set_heir_culture = $culture14$ }
5717
+ if = { limit = { has_consort = yes } set_consort_culture = $culture14$_new }
5718
+ }]
5719
+ [[culture15]$culture15$ = {
5720
+ change_primary_culture = $culture15$_new
5721
+ set_ruler_culture = $culture15$_new
5722
+ if = { limit = { has_heir = yes } set_heir_culture = $culture15$ }
5723
+ if = { limit = { has_consort = yes } set_consort_culture = $culture15$_new }
5724
+ }]
5725
+ [[culture16]$culture16$ = {
5726
+ change_primary_culture = $culture16$_new
5727
+ set_ruler_culture = $culture16$_new
5728
+ if = { limit = { has_heir = yes } set_heir_culture = $culture16$ }
5729
+ if = { limit = { has_consort = yes } set_consort_culture = $culture16$_new }
5730
+ }]
5731
+ [[culture17]$culture17$ = {
5732
+ change_primary_culture = $culture17$_new
5733
+ set_ruler_culture = $culture17$_new
5734
+ if = { limit = { has_heir = yes } set_heir_culture = $culture17$ }
5735
+ if = { limit = { has_consort = yes } set_consort_culture = $culture17$_new }
5736
+ }]
5737
+ [[culture18]$culture18$ = {
5738
+ change_primary_culture = $culture18$_new
5739
+ set_ruler_culture = $culture18$_new
5740
+ if = { limit = { has_heir = yes } set_heir_culture = $culture18$ }
5741
+ if = { limit = { has_consort = yes } set_consort_culture = $culture18$_new }
5742
+ }]
5743
+ [[culture19]$culture19$ = {
5744
+ change_primary_culture = $culture19$_new
5745
+ set_ruler_culture = $culture19$_new
5746
+ if = { limit = { has_heir = yes } set_heir_culture = $culture19$ }
5747
+ if = { limit = { has_consort = yes } set_consort_culture = $culture19$_new }
5748
+ }]
5749
+ [[culture20]$culture20$ = {
5750
+ change_primary_culture = $culture20$_new
5751
+ set_ruler_culture = $culture20$_new
5752
+ if = { limit = { has_heir = yes } set_heir_culture = $culture20$ }
5753
+ if = { limit = { has_consort = yes } set_consort_culture = $culture20$_new }
5754
+ }]
5755
+ }
5756
+ }
5757
+ set_global_flag = updated_$culture_group$_flag
5758
+ }
5759
+ }
5760
+ #Supports the following trade goods Base prices
5761
+ # grain 2.5
5762
+ # wine 2.5
5763
+ # wool 2.5
5764
+ # cloth 3
5765
+ # fish 2.5
5766
+ # fur 2
5767
+ # salt 3
5768
+ # naval_supplies 2
5769
+ # copper 3
5770
+ # gold 10 #Technically 0, but let us calculate with 10
5771
+ # iron 3
5772
+ # slaves 2
5773
+ # ivory 4
5774
+ # tea 3
5775
+ # chinaware 3
5776
+ # spices 3
5777
+ # coffee 3
5778
+ # cotton 3
5779
+ # sugar 3
5780
+ # tobacco 3
5781
+ # cocoa 4
5782
+ # silk 4
5783
+ # dyes 4
5784
+ # tropical_wood 2
5785
+ # livestock 2
5786
+ # incense 2.5
5787
+ # glass 3
5788
+ # paper 3.5
5789
+ # gems 4
5790
+ # coal 10
5791
+ # cloves 8
5792
+ # unknown 0 #Special and should not count
5793
+
5794
+ determine_value_of_trade_goods_grain = {
5795
+ set_variable = {
5796
+ which = base_value_grain
5797
+ value = 2.5
5798
+ }
5799
+ if = {
5800
+ limit = {
5801
+ has_chance_scaling_cost = yes
5802
+ }
5803
+ set_variable = {
5804
+ which = chance_modifier_grain
5805
+ value = 1
5806
+ }
5807
+ if = {
5808
+ limit = {
5809
+ ROOT = {
5810
+ OR = {
5811
+ has_terrain = mountain
5812
+ has_terrain = coastal_desert
5813
+ has_terrain = forest
5814
+ has_terrain = woods
5815
+ has_terrain = hills
5816
+ has_terrain = jungle
5817
+ }
5818
+ }
5819
+ }
5820
+ multiply_variable = {
5821
+ which = chance_modifier_grain
5822
+ value = 0.15
5823
+ }
5824
+ }
5825
+ if = {
5826
+ limit = {
5827
+ ROOT = {
5828
+ OR = {
5829
+ has_terrain = highlands
5830
+ has_terrain = marsh
5831
+ }
5832
+ }
5833
+ }
5834
+ multiply_variable = {
5835
+ which = chance_modifier_grain
5836
+ value = 0.25
5837
+ }
5838
+ }
5839
+ if = {
5840
+ limit = {
5841
+ ROOT = {
5842
+ OR = {
5843
+ has_climate = arid
5844
+ has_climate = tropical
5845
+ }
5846
+ }
5847
+ }
5848
+ multiply_variable = {
5849
+ which = chance_modifier_grain
5850
+ value = 0.25
5851
+ }
5852
+ }
5853
+ if = {
5854
+ limit = {
5855
+ ROOT = {
5856
+ OR = {
5857
+ has_terrain = drylands
5858
+ has_terrain = savannah
5859
+ has_terrain = steppe
5860
+ }
5861
+ }
5862
+ }
5863
+ multiply_variable = {
5864
+ which = chance_modifier_grain
5865
+ value = 0.6
5866
+ }
5867
+ }
5868
+ if = {
5869
+ limit = {
5870
+ ROOT = {
5871
+ has_winter = severe_winter
5872
+ }
5873
+ }
5874
+ multiply_variable = {
5875
+ which = chance_modifier_grain
5876
+ value = 0.35
5877
+ }
5878
+ }
5879
+ if = {
5880
+ limit = {
5881
+ ROOT = {
5882
+ has_winter = normal_winter
5883
+ }
5884
+ }
5885
+ multiply_variable = {
5886
+ which = chance_modifier_grain
5887
+ value = 0.5
5888
+ }
5889
+ }
5890
+ if = {
5891
+ limit = {
5892
+ ROOT = {
5893
+ has_terrain = farmlands
5894
+ }
5895
+ }
5896
+ multiply_variable = {
5897
+ which = chance_modifier_grain
5898
+ value = 1.5
5899
+ }
5900
+ }
5901
+ if = {
5902
+ limit = {
5903
+ ROOT = {
5904
+ OR = {
5905
+ region = poland_region
5906
+ region = ruthenia_region
5907
+ }
5908
+ }
5909
+ }
5910
+ multiply_variable = {
5911
+ which = chance_modifier_grain
5912
+ value = 1.5
5913
+ }
5914
+ }
5915
+ if = {
5916
+ limit = {
5917
+ OR = {
5918
+ has_increased_trade_goods_discovery = { trade_goods = grain }
5919
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = grain } }
5920
+ }
5921
+ }
5922
+ multiply_variable = {
5923
+ which = chance_modifier_grain
5924
+ value = 2
5925
+ }
5926
+ }
5927
+ if = {
5928
+ limit = {
5929
+ NOT = {
5930
+ is_variable_equal = {
5931
+ which = chance_modifier_grain
5932
+ value = 0
5933
+ }
5934
+ }
5935
+ }
5936
+ divide_variable = {
5937
+ which = base_value_grain
5938
+ which = chance_modifier_grain
5939
+ }
5940
+ }
5941
+ }
5942
+ }
5943
+ determine_value_of_trade_goods_wine = {
5944
+ set_variable = {
5945
+ which = base_value_wine
5946
+ value = 2.5
5947
+ }
5948
+ if = {
5949
+ limit = {
5950
+ has_chance_scaling_cost = yes
5951
+ }
5952
+ set_variable = {
5953
+ which = chance_modifier_wine
5954
+ value = 1
5955
+ }
5956
+ if = {
5957
+ limit = {
5958
+ ROOT = {
5959
+ has_winter = normal_winter
5960
+ }
5961
+ }
5962
+ multiply_variable = {
5963
+ which = chance_modifier_wine
5964
+ value = 0.25
5965
+ }
5966
+ }
5967
+ if = {
5968
+ limit = {
5969
+ ROOT = {
5970
+ has_terrain = farmlands
5971
+ }
5972
+ }
5973
+ multiply_variable = {
5974
+ which = chance_modifier_wine
5975
+ value = 1.25
5976
+ }
5977
+ }
5978
+ if = {
5979
+ limit = {
5980
+ ROOT = {
5981
+ OR = {
5982
+ has_terrain = hills
5983
+ has_terrain = highlands
5984
+ }
5985
+ }
5986
+ }
5987
+ multiply_variable = {
5988
+ which = chance_modifier_wine
5989
+ value = 1.25
5990
+ }
5991
+ }
5992
+ if = {
5993
+ limit = {
5994
+ ROOT = {
5995
+ OR = {
5996
+ area = cuyo_area
5997
+ region = france_region
5998
+ region = italy_region
5999
+ }
6000
+ }
6001
+ }
6002
+ multiply_variable = {
6003
+ which = chance_modifier_wine
6004
+ value = 1.5
6005
+ }
6006
+ }
6007
+ if = {
6008
+ limit = {
6009
+ OR = {
6010
+ culture_group = french
6011
+ culture_group = iberian
6012
+ culture_group = latin
6013
+ }
6014
+ }
6015
+ multiply_variable = {
6016
+ which = chance_modifier_wine
6017
+ value = 1.1
6018
+ }
6019
+ }
6020
+ if = {
6021
+ limit = {
6022
+ OR = {
6023
+ has_increased_trade_goods_discovery = { trade_goods = wine }
6024
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = wine } }
6025
+ }
6026
+ }
6027
+ multiply_variable = {
6028
+ which = chance_modifier_wine
6029
+ value = 2
6030
+ }
6031
+ }
6032
+ if = {
6033
+ limit = {
6034
+ NOT = {
6035
+ is_variable_equal = {
6036
+ which = chance_modifier_wine
6037
+ value = 0
6038
+ }
6039
+ }
6040
+ }
6041
+ divide_variable = {
6042
+ which = base_value_wine
6043
+ which = chance_modifier_wine
6044
+ }
6045
+ }
6046
+ }
6047
+ }
6048
+ determine_value_of_trade_goods_wool = {
6049
+ set_variable = {
6050
+ which = base_value_wool
6051
+ value = 2.5
6052
+ }
6053
+ if = {
6054
+ limit = {
6055
+ has_chance_scaling_cost = yes
6056
+ }
6057
+ set_variable = {
6058
+ which = chance_modifier_wool
6059
+ value = 1
6060
+ }
6061
+ if = {
6062
+ limit = {
6063
+ ROOT = {
6064
+ OR = {
6065
+ has_terrain = grasslands
6066
+ has_terrain = hills
6067
+ has_terrain = forest
6068
+ has_terrain = woods
6069
+ }
6070
+ }
6071
+ }
6072
+ multiply_variable = {
6073
+ which = chance_modifier_wool
6074
+ value = 0.15
6075
+ }
6076
+ }
6077
+ if = {
6078
+ limit = {
6079
+ ROOT = {
6080
+ OR = {
6081
+ has_terrain = desert
6082
+ has_terrain = savannah
6083
+ has_terrain = highlands
6084
+ has_terrain = drylands
6085
+ has_climate = arid
6086
+ }
6087
+ }
6088
+ }
6089
+ multiply_variable = {
6090
+ which = chance_modifier_wool
6091
+ value = 1.25
6092
+ }
6093
+ }
6094
+ if = {
6095
+ limit = {
6096
+ ROOT = {
6097
+ region = central_asia_region
6098
+ }
6099
+ }
6100
+ multiply_variable = {
6101
+ which = chance_modifier_wool
6102
+ value = 1.5
6103
+ }
6104
+ }
6105
+ if = {
6106
+ limit = {
6107
+ ROOT = {
6108
+ region = tibet_region
6109
+ }
6110
+ }
6111
+ multiply_variable = {
6112
+ which = chance_modifier_wool
6113
+ value = 1.5
6114
+ }
6115
+ }
6116
+ if = {
6117
+ limit = {
6118
+ OR = {
6119
+ has_increased_trade_goods_discovery = { trade_goods = wool }
6120
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = wool } }
6121
+ }
6122
+ }
6123
+ multiply_variable = {
6124
+ which = chance_modifier_wool
6125
+ value = 2
6126
+ }
6127
+ }
6128
+ if = {
6129
+ limit = {
6130
+ NOT = {
6131
+ is_variable_equal = {
6132
+ which = chance_modifier_wool
6133
+ value = 0
6134
+ }
6135
+ }
6136
+ }
6137
+ divide_variable = {
6138
+ which = base_value_wool
6139
+ which = chance_modifier_wool
6140
+ }
6141
+ }
6142
+ }
6143
+ }
6144
+ determine_value_of_trade_goods_cloth = {
6145
+ set_variable = {
6146
+ which = base_value_cloth
6147
+ value = 3
6148
+ }
6149
+ if = {
6150
+ limit = {
6151
+ has_chance_scaling_cost = yes
6152
+ }
6153
+ set_variable = {
6154
+ which = chance_modifier_cloth
6155
+ value = 1
6156
+ }
6157
+ if = {
6158
+ limit = {
6159
+ ROOT = {
6160
+ development_discounting_tribal = 12
6161
+ }
6162
+ }
6163
+ multiply_variable = {
6164
+ which = chance_modifier_cloth
6165
+ value = 2
6166
+ }
6167
+ }
6168
+ if = {
6169
+ limit = {
6170
+ OR = {
6171
+ has_increased_trade_goods_discovery = { trade_goods = cloth }
6172
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = cloth } }
6173
+ }
6174
+ }
6175
+ multiply_variable = {
6176
+ which = chance_modifier_cloth
6177
+ value = 2
6178
+ }
6179
+ }
6180
+ if = {
6181
+ limit = {
6182
+ NOT = {
6183
+ is_variable_equal = {
6184
+ which = chance_modifier_cloth
6185
+ value = 0
6186
+ }
6187
+ }
6188
+ }
6189
+ divide_variable = {
6190
+ which = base_value_cloth
6191
+ which = chance_modifier_cloth
6192
+ }
6193
+ }
6194
+ }
6195
+ }
6196
+ determine_value_of_trade_goods_fish = {
6197
+ set_variable = {
6198
+ which = base_value_fish
6199
+ value = 2.5
6200
+ }
6201
+ if = {
6202
+ limit = {
6203
+ has_chance_scaling_cost = yes
6204
+ }
6205
+ set_variable = {
6206
+ which = chance_modifier_fish
6207
+ value = 1
6208
+ }
6209
+ if = {
6210
+ limit = {
6211
+ ROOT = {
6212
+ OR = {
6213
+ region = carribeans_region
6214
+ region = malaya_region
6215
+ region = moluccas_region
6216
+ region = indonesia_region
6217
+ }
6218
+ }
6219
+ }
6220
+ multiply_variable = {
6221
+ which = chance_modifier_fish
6222
+ value = 0.65
6223
+ }
6224
+ }
6225
+ if = {
6226
+ limit = {
6227
+ ROOT = {
6228
+ area = newfoundland_area
6229
+ }
6230
+ }
6231
+ multiply_variable = {
6232
+ which = chance_modifier_fish
6233
+ value = 15
6234
+ }
6235
+ }
6236
+ if = {
6237
+ limit = {
6238
+ ROOT = {
6239
+ OR = {
6240
+ has_terrain = coastline
6241
+ has_terrain = coastal_desert
6242
+ }
6243
+ }
6244
+ }
6245
+ multiply_variable = {
6246
+ which = chance_modifier_fish
6247
+ value = 1.1
6248
+ }
6249
+ }
6250
+ if = {
6251
+ limit = {
6252
+ ROOT = {
6253
+ has_terrain = glacier
6254
+ }
6255
+ }
6256
+ multiply_variable = {
6257
+ which = chance_modifier_fish
6258
+ value = 1.2
6259
+ }
6260
+ }
6261
+ if = {
6262
+ limit = {
6263
+ OR = {
6264
+ has_increased_trade_goods_discovery = { trade_goods = fish }
6265
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = fish } }
6266
+ }
6267
+ }
6268
+ multiply_variable = {
6269
+ which = chance_modifier_fish
6270
+ value = 2
6271
+ }
6272
+ }
6273
+ if = {
6274
+ limit = {
6275
+ NOT = {
6276
+ is_variable_equal = {
6277
+ which = chance_modifier_fish
6278
+ value = 0
6279
+ }
6280
+ }
6281
+ }
6282
+ divide_variable = {
6283
+ which = base_value_fish
6284
+ which = chance_modifier_fish
6285
+ }
6286
+ }
6287
+ }
6288
+ }
6289
+ determine_value_of_trade_goods_fur = {
6290
+ set_variable = {
6291
+ which = base_value_fur
6292
+ value = 2
6293
+ }
6294
+ if = {
6295
+ limit = {
6296
+ has_chance_scaling_cost = yes
6297
+ }
6298
+ set_variable = {
6299
+ which = chance_modifier_fur
6300
+ value = 1
6301
+ }
6302
+ if = {
6303
+ limit = {
6304
+ ROOT = {
6305
+ OR = {
6306
+ has_terrain = savannah
6307
+ has_terrain = grasslands
6308
+ has_terrain = highlands
6309
+ }
6310
+ has_winter = mild_winter
6311
+ }
6312
+ }
6313
+ multiply_variable = {
6314
+ which = chance_modifier_fur
6315
+ value = 0.75
6316
+ }
6317
+ }
6318
+ if = {
6319
+ limit = {
6320
+ ROOT = {
6321
+ NOT = { native_size = 1 }
6322
+ }
6323
+ }
6324
+ multiply_variable = {
6325
+ which = chance_modifier_fur
6326
+ value = 0.5
6327
+ }
6328
+ }
6329
+ if = {
6330
+ limit = {
6331
+ ROOT = {
6332
+ native_size = 1
6333
+ }
6334
+ }
6335
+ multiply_variable = {
6336
+ which = chance_modifier_fur
6337
+ value = 2
6338
+ }
6339
+ }
6340
+ if = {
6341
+ limit = {
6342
+ ROOT = {
6343
+ has_terrain = forest
6344
+ }
6345
+ }
6346
+ multiply_variable = {
6347
+ which = chance_modifier_fur
6348
+ value = 1.5
6349
+ }
6350
+ }
6351
+ if = {
6352
+ limit = {
6353
+ ROOT = {
6354
+ has_winter = normal_winter
6355
+ }
6356
+ }
6357
+ multiply_variable = {
6358
+ which = chance_modifier_fur
6359
+ value = 1.6
6360
+ }
6361
+ }
6362
+ if = {
6363
+ limit = {
6364
+ ROOT = {
6365
+ has_winter = severe_winter
6366
+ NOT = { has_terrain = glacier }
6367
+ }
6368
+ }
6369
+ multiply_variable = {
6370
+ which = chance_modifier_fur
6371
+ value = 2.5
6372
+ }
6373
+ }
6374
+ if = {
6375
+ limit = {
6376
+ has_country_flag = encourage_cash_crops_flag
6377
+ }
6378
+ multiply_variable = {
6379
+ which = chance_modifier_fur
6380
+ value = 2
6381
+ }
6382
+ }
6383
+ if = {
6384
+ limit = {
6385
+ OR = {
6386
+ has_increased_trade_goods_discovery = { trade_goods = fur }
6387
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = fur } }
6388
+ }
6389
+ }
6390
+ multiply_variable = {
6391
+ which = chance_modifier_fur
6392
+ value = 2
6393
+ }
6394
+ }
6395
+ if = {
6396
+ limit = {
6397
+ NOT = {
6398
+ is_variable_equal = {
6399
+ which = chance_modifier_fur
6400
+ value = 0
6401
+ }
6402
+ }
6403
+ }
6404
+ divide_variable = {
6405
+ which = base_value_fur
6406
+ which = chance_modifier_fur
6407
+ }
6408
+ }
6409
+ }
6410
+ }
6411
+ determine_value_of_trade_goods_salt = {
6412
+ set_variable = {
6413
+ which = base_value_salt
6414
+ value = 3
6415
+ }
6416
+ if = {
6417
+ limit = {
6418
+ has_chance_scaling_cost = yes
6419
+ }
6420
+ set_variable = {
6421
+ which = chance_modifier_salt
6422
+ value = 1
6423
+ }
6424
+ if = {
6425
+ limit = {
6426
+ ROOT = {
6427
+ OR = {
6428
+ has_terrain = desert
6429
+ AND = {
6430
+ has_terrain = marsh
6431
+ NOT = { has_climate = arctic } #Hudson Bay
6432
+ }
6433
+ }
6434
+ }
6435
+ }
6436
+ multiply_variable = {
6437
+ which = chance_modifier_salt
6438
+ value = 2
6439
+ }
6440
+ }
6441
+ if = {
6442
+ limit = {
6443
+ ROOT = {
6444
+ region = peru_region
6445
+ }
6446
+ }
6447
+ multiply_variable = {
6448
+ which = chance_modifier_salt
6449
+ value = 2
6450
+ }
6451
+ }
6452
+ if = {
6453
+ limit = {
6454
+ ROOT = {
6455
+ area = western_sahara_area
6456
+ }
6457
+ }
6458
+ multiply_variable = {
6459
+ which = chance_modifier_salt
6460
+ value = 2
6461
+ }
6462
+ }
6463
+ if = {
6464
+ limit = {
6465
+ OR = {
6466
+ has_increased_trade_goods_discovery = { trade_goods = salt }
6467
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = salt } }
6468
+ }
6469
+ }
6470
+ multiply_variable = {
6471
+ which = chance_modifier_salt
6472
+ value = 2
6473
+ }
6474
+ }
6475
+ if = {
6476
+ limit = {
6477
+ NOT = {
6478
+ is_variable_equal = {
6479
+ which = chance_modifier_salt
6480
+ value = 0
6481
+ }
6482
+ }
6483
+ }
6484
+ divide_variable = {
6485
+ which = base_value_salt
6486
+ which = chance_modifier_salt
6487
+ }
6488
+ }
6489
+ }
6490
+ }
6491
+ determine_value_of_trade_goods_naval_supplies = {
6492
+ set_variable = {
6493
+ which = base_value_naval_supplies
6494
+ value = 2
6495
+ }
6496
+ if = {
6497
+ limit = {
6498
+ has_chance_scaling_cost = yes
6499
+ }
6500
+ set_variable = {
6501
+ which = chance_modifier_naval_supplies
6502
+ value = 1
6503
+ }
6504
+ if = {
6505
+ limit = {
6506
+ ROOT = {
6507
+ region = carribeans_region
6508
+ }
6509
+ }
6510
+ multiply_variable = {
6511
+ which = chance_modifier_naval_supplies
6512
+ value = 0.65
6513
+ }
6514
+ }
6515
+ if = {
6516
+ limit = {
6517
+ ROOT = {
6518
+ OR = {
6519
+ has_terrain = mountain
6520
+ has_terrain = grasslands
6521
+ region = central_africa_region
6522
+ }
6523
+ }
6524
+ }
6525
+ multiply_variable = {
6526
+ which = chance_modifier_naval_supplies
6527
+ value = 0.5
6528
+ }
6529
+ }
6530
+ if = {
6531
+ limit = {
6532
+ NOT = { num_of_ports = 1 }
6533
+ }
6534
+ multiply_variable = {
6535
+ which = chance_modifier_naval_supplies
6536
+ value = 0.5
6537
+ }
6538
+ }
6539
+ if = {
6540
+ limit = {
6541
+ ROOT = {
6542
+ OR = {
6543
+ has_terrain = coastline
6544
+ has_climate = tropical
6545
+ }
6546
+ }
6547
+ }
6548
+ multiply_variable = {
6549
+ which = chance_modifier_naval_supplies
6550
+ value = 0.75
6551
+ }
6552
+ }
6553
+ if = {
6554
+ limit = {
6555
+ ROOT = {
6556
+ OR = {
6557
+ has_terrain = forest
6558
+ has_terrain = woods
6559
+ has_terrain = hills
6560
+ has_terrain = jungle
6561
+ }
6562
+ }
6563
+ }
6564
+ multiply_variable = {
6565
+ which = chance_modifier_naval_supplies
6566
+ value = 1.5
6567
+ }
6568
+ }
6569
+ if = {
6570
+ limit = {
6571
+ OR = {
6572
+ has_increased_trade_goods_discovery = { trade_goods = naval_supplies }
6573
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = naval_supplies } }
6574
+ }
6575
+ }
6576
+ multiply_variable = {
6577
+ which = chance_modifier_naval_supplies
6578
+ value = 2
6579
+ }
6580
+ }
6581
+ if = {
6582
+ limit = {
6583
+ NOT = {
6584
+ is_variable_equal = {
6585
+ which = chance_modifier_naval_supplies
6586
+ value = 0
6587
+ }
6588
+ }
6589
+ }
6590
+ divide_variable = {
6591
+ which = base_value_naval_supplies
6592
+ which = chance_modifier_naval_supplies
6593
+ }
6594
+ }
6595
+ }
6596
+ }
6597
+ determine_value_of_trade_goods_copper = {
6598
+ set_variable = {
6599
+ which = base_value_copper
6600
+ value = 3
6601
+ }
6602
+ if = {
6603
+ limit = {
6604
+ has_chance_scaling_cost = yes
6605
+ }
6606
+ set_variable = {
6607
+ which = chance_modifier_copper
6608
+ value = 1
6609
+ }
6610
+ if = {
6611
+ limit = {
6612
+ ROOT = {
6613
+ region = central_africa_region
6614
+ }
6615
+ }
6616
+ multiply_variable = {
6617
+ which = chance_modifier_copper
6618
+ value = 0.7
6619
+ }
6620
+ }
6621
+ if = {
6622
+ limit = {
6623
+ ROOT = {
6624
+ is_random_new_world = yes
6625
+ OR = {
6626
+ has_terrain = mountain
6627
+ has_terrain = highlands
6628
+ }
6629
+ }
6630
+ }
6631
+ multiply_variable = {
6632
+ which = chance_modifier_copper
6633
+ value = 1.1
6634
+ }
6635
+ }
6636
+ if = {
6637
+ limit = {
6638
+ ROOT = {
6639
+ OR = {
6640
+ area = minas_gerais_area
6641
+ area = diamantina_area
6642
+ area = mato_grosso_area
6643
+ area = ofaie_area
6644
+ area = great_valley_area
6645
+ area = susquehanna_area
6646
+ area = hudson_valley_area
6647
+ area = lake_superior_area
6648
+ area = south_iroquoisia_area
6649
+ region = west_siberia_region
6650
+ region = east_siberia_region
6651
+ }
6652
+ }
6653
+ }
6654
+ multiply_variable = {
6655
+ which = chance_modifier_copper
6656
+ value = 1.5
6657
+ }
6658
+ }
6659
+ if = {
6660
+ limit = {
6661
+ OR = {
6662
+ has_increased_trade_goods_discovery = { trade_goods = copper }
6663
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = copper } }
6664
+ }
6665
+ }
6666
+ multiply_variable = {
6667
+ which = chance_modifier_copper
6668
+ value = 2
6669
+ }
6670
+ }
6671
+ if = {
6672
+ limit = {
6673
+ NOT = {
6674
+ is_variable_equal = {
6675
+ which = chance_modifier_copper
6676
+ value = 0
6677
+ }
6678
+ }
6679
+ }
6680
+ divide_variable = {
6681
+ which = base_value_copper
6682
+ which = chance_modifier_copper
6683
+ }
6684
+ }
6685
+ }
6686
+ }
6687
+ determine_value_of_trade_goods_gold = {
6688
+ set_variable = {
6689
+ which = base_value_gold
6690
+ value = 10
6691
+ }
6692
+ if = {
6693
+ limit = {
6694
+ #has_chance_scaling_cost = yes
6695
+ always = no
6696
+ }
6697
+ set_variable = {
6698
+ which = chance_modifier_gold
6699
+ value = 1
6700
+ }
6701
+ if = {
6702
+ limit = {
6703
+ ROOT = {
6704
+ is_random_new_world = yes
6705
+ has_terrain = mountain
6706
+ continent = new_world #Always in RNW
6707
+ }
6708
+ }
6709
+ multiply_variable = {
6710
+ which = chance_modifier_gold
6711
+ value = 1.5
6712
+ }
6713
+ }
6714
+ if = {
6715
+ limit = {
6716
+ ROOT = {
6717
+ normal_or_historical_nations = no
6718
+ }
6719
+ }
6720
+ multiply_variable = {
6721
+ which = chance_modifier_gold
6722
+ value = 1.5
6723
+ }
6724
+ }
6725
+ if = {
6726
+ limit = {
6727
+ ROOT = {
6728
+ region = peru_region
6729
+ }
6730
+ }
6731
+ multiply_variable = {
6732
+ which = chance_modifier_gold
6733
+ value = 3.5
6734
+ }
6735
+ }
6736
+ if = {
6737
+ limit = {
6738
+ ROOT = {
6739
+ OR = {
6740
+ province_id = 852 # Mexico
6741
+ province_id = 853 # Huastec
6742
+ province_id = 854 # Sayultecas
6743
+ province_id = 2617 # Huichol
6744
+ province_id = 856 # Zacatecas
6745
+ province_id = 857 # Guichichil
6746
+ province_id = 858 # Tamaulipas
6747
+ province_id = 2615 # Guamares
6748
+ province_id = 4781 # Transvaal (Johannesburg mines)
6749
+ }
6750
+ }
6751
+ }
6752
+ multiply_variable = {
6753
+ which = chance_modifier_gold
6754
+ value = 4
6755
+ }
6756
+ }
6757
+ if = {
6758
+ limit = {
6759
+ ROOT = {
6760
+ OR = {
6761
+ area = minas_gerais_area
6762
+ area = diamantina_area
6763
+ area = mato_grosso_area
6764
+ area = ofaie_area
6765
+ area = goias_area
6766
+ area = pontal_area
6767
+ }
6768
+ }
6769
+ }
6770
+ multiply_variable = {
6771
+ which = chance_modifier_gold
6772
+ value = 3.5
6773
+ }
6774
+ }
6775
+ if = {
6776
+ limit = {
6777
+ OR = {
6778
+ has_country_flag = por_bandeirantes_flag
6779
+ colonial_parent = { has_country_flag = por_bandeirantes_flag }
6780
+ }
6781
+ }
6782
+ multiply_variable = {
6783
+ which = chance_modifier_gold
6784
+ value = 2
6785
+ }
6786
+ }
6787
+ if = {
6788
+ limit = {
6789
+ OR = {
6790
+ has_increased_trade_goods_discovery = { trade_goods = gold }
6791
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = gold } }
6792
+ }
6793
+ }
6794
+ multiply_variable = {
6795
+ which = chance_modifier_gold
6796
+ value = 2
6797
+ }
6798
+ }
6799
+ if = {
6800
+ limit = {
6801
+ ROOT = {
6802
+ province_id = 856
6803
+ }
6804
+ }
6805
+ multiply_variable = {
6806
+ which = chance_modifier_gold
6807
+ value = 100
6808
+ }
6809
+ }
6810
+ if = {
6811
+ limit = {
6812
+ NOT = {
6813
+ is_variable_equal = {
6814
+ which = chance_modifier_gold
6815
+ value = 0
6816
+ }
6817
+ }
6818
+ }
6819
+ divide_variable = {
6820
+ which = base_value_gold
6821
+ which = chance_modifier_gold
6822
+ }
6823
+ }
6824
+ }
6825
+ }
6826
+ determine_value_of_trade_goods_iron = {
6827
+ set_variable = {
6828
+ which = base_value_iron
6829
+ value = 3
6830
+ }
6831
+ if = {
6832
+ limit = {
6833
+ has_chance_scaling_cost = yes
6834
+ }
6835
+ set_variable = {
6836
+ which = chance_modifier_iron
6837
+ value = 1
6838
+ }
6839
+ if = {
6840
+ limit = {
6841
+ ROOT = {
6842
+ normal_or_historical_nations = no
6843
+ OR = {
6844
+ has_terrain = mountain
6845
+ has_terrain = hills
6846
+ has_terrain = highlands
6847
+ province_id = 990
6848
+ }
6849
+ }
6850
+ }
6851
+ multiply_variable = {
6852
+ which = chance_modifier_iron
6853
+ value = 1.2
6854
+ }
6855
+ }
6856
+ if = {
6857
+ limit = {
6858
+ ROOT = {
6859
+ province_id = 990
6860
+ }
6861
+ }
6862
+ multiply_variable = {
6863
+ which = chance_modifier_iron
6864
+ value = 20
6865
+ }
6866
+ }
6867
+ if = {
6868
+ limit = {
6869
+ NOT = {
6870
+ is_variable_equal = {
6871
+ which = chance_modifier_iron
6872
+ value = 0
6873
+ }
6874
+ }
6875
+ }
6876
+ divide_variable = {
6877
+ which = base_value_iron
6878
+ which = chance_modifier_iron
6879
+ }
6880
+ }
6881
+ }
6882
+ }
6883
+ determine_value_of_trade_goods_slaves = {
6884
+ set_variable = {
6885
+ which = base_value_slaves
6886
+ value = 2
6887
+ }
6888
+ if = {
6889
+ limit = {
6890
+ has_chance_scaling_cost = yes
6891
+ }
6892
+ set_variable = {
6893
+ which = chance_modifier_slaves
6894
+ value = 1
6895
+ }
6896
+ if = {
6897
+ limit = {
6898
+ ROOT = {
6899
+ OR = {
6900
+ region = horn_of_africa_region
6901
+ region = kongo_region
6902
+ area = west_africa_coast_area
6903
+ area = gulf_of_guinea_area
6904
+ area = benin_area
6905
+ }
6906
+ }
6907
+ }
6908
+ multiply_variable = {
6909
+ which = chance_modifier_slaves
6910
+ value = 2
6911
+ }
6912
+ }
6913
+ if = {
6914
+ limit = {
6915
+ ROOT = {
6916
+ region = south_africa_region
6917
+ }
6918
+ }
6919
+ multiply_variable = {
6920
+ which = chance_modifier_slaves
6921
+ value = 0.5
6922
+ }
6923
+ }
6924
+ if = {
6925
+ limit = {
6926
+ has_country_flag = encourage_cash_crops_flag
6927
+ }
6928
+ multiply_variable = {
6929
+ which = chance_modifier_slaves
6930
+ value = 2
6931
+ }
6932
+ }
6933
+ if = {
6934
+ limit = {
6935
+ OR = {
6936
+ has_increased_trade_goods_discovery = { trade_goods = slaves }
6937
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = slaves } }
6938
+ }
6939
+ }
6940
+ multiply_variable = {
6941
+ which = chance_modifier_slaves
6942
+ value = 2
6943
+ }
6944
+ }
6945
+ if = {
6946
+ limit = {
6947
+ NOT = {
6948
+ is_variable_equal = {
6949
+ which = chance_modifier_slaves
6950
+ value = 0
6951
+ }
6952
+ }
6953
+ }
6954
+ divide_variable = {
6955
+ which = base_value_slaves
6956
+ which = chance_modifier_slaves
6957
+ }
6958
+ }
6959
+ }
6960
+ }
6961
+ determine_value_of_trade_goods_ivory = {
6962
+ set_variable = {
6963
+ which = base_value_ivory
6964
+ value = 4
6965
+ }
6966
+ if = {
6967
+ limit = {
6968
+ has_chance_scaling_cost = yes
6969
+ }
6970
+ set_variable = {
6971
+ which = chance_modifier_ivory
6972
+ value = 1
6973
+ }
6974
+ if = {
6975
+ limit = {
6976
+ ROOT = {
6977
+ OR = {
6978
+ region = malaya_region
6979
+ region = moluccas_region
6980
+ region = indonesia_region
6981
+ }
6982
+ }
6983
+ }
6984
+ multiply_variable = {
6985
+ which = chance_modifier_ivory
6986
+ value = 0.5
6987
+ }
6988
+ }
6989
+ if = {
6990
+ limit = {
6991
+ ROOT = {
6992
+ OR = {
6993
+ has_terrain = jungle
6994
+ has_terrain = savannah
6995
+ }
6996
+ }
6997
+ }
6998
+ multiply_variable = {
6999
+ which = chance_modifier_ivory
7000
+ value = 1.25
7001
+ }
7002
+ }
7003
+ if = {
7004
+ limit = {
7005
+ has_country_flag = encourage_cash_crops_flag
7006
+ }
7007
+ multiply_variable = {
7008
+ which = chance_modifier_ivory
7009
+ value = 2
7010
+ }
7011
+ }
7012
+ if = {
7013
+ limit = {
7014
+ OR = {
7015
+ has_increased_trade_goods_discovery = { trade_goods = ivory }
7016
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = ivory } }
7017
+ }
7018
+ }
7019
+ multiply_variable = {
7020
+ which = chance_modifier_ivory
7021
+ value = 2
7022
+ }
7023
+ }
7024
+ if = {
7025
+ limit = {
7026
+ NOT = {
7027
+ is_variable_equal = {
7028
+ which = chance_modifier_ivory
7029
+ value = 0
7030
+ }
7031
+ }
7032
+ }
7033
+ divide_variable = {
7034
+ which = base_value_ivory
7035
+ which = chance_modifier_ivory
7036
+ }
7037
+ }
7038
+ }
7039
+ }
7040
+ determine_value_of_trade_goods_tea = {
7041
+ set_variable = {
7042
+ which = base_value_tea
7043
+ value = 3
7044
+ }
7045
+ if = {
7046
+ limit = {
7047
+ has_chance_scaling_cost = yes
7048
+ }
7049
+ set_variable = {
7050
+ which = chance_modifier_tea
7051
+ value = 1
7052
+ }
7053
+ if = {
7054
+ limit = {
7055
+ ROOT = {
7056
+ has_terrain = farmlands
7057
+ }
7058
+ }
7059
+ multiply_variable = {
7060
+ which = chance_modifier_tea
7061
+ value = 1.2
7062
+ }
7063
+ }
7064
+ if = {
7065
+ limit = {
7066
+ ROOT = {
7067
+ OR = {
7068
+ area = assam_area
7069
+ AND = {
7070
+ has_climate = tropical
7071
+ is_random_new_world = yes
7072
+ }
7073
+ }
7074
+ }
7075
+ }
7076
+ multiply_variable = {
7077
+ which = chance_modifier_tea
7078
+ value = 1.5
7079
+ }
7080
+ }
7081
+ if = {
7082
+ limit = {
7083
+ ROOT = {
7084
+ OR = {
7085
+ area = banda_oriental_area #Yerba Mate
7086
+ area = rio_grande_do_sol_area #Yerba Mate
7087
+ area = buenos_aires_area #Yerba Mate
7088
+ area = misiones_area #Yerba Mate
7089
+ area = beni_area #Yerba Mate
7090
+ area = moxos_area #Yerba Mate
7091
+ area = paraguay_area #Yerba Mate
7092
+ area = sao_paolo_area #Yerba Mate
7093
+ area = west_sao_paolo_area #Yerba Mate
7094
+ }
7095
+ }
7096
+ }
7097
+ multiply_variable = {
7098
+ which = chance_modifier_tea
7099
+ value = 1.5
7100
+ }
7101
+ }
7102
+ if = {
7103
+ limit = {
7104
+ OR = {
7105
+ has_increased_trade_goods_discovery = { trade_goods = tea }
7106
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = tea } }
7107
+ }
7108
+ }
7109
+ multiply_variable = {
7110
+ which = chance_modifier_tea
7111
+ value = 2
7112
+ }
7113
+ }
7114
+ if = {
7115
+ limit = {
7116
+ has_country_flag = encourage_cash_crops_flag
7117
+ }
7118
+ multiply_variable = {
7119
+ which = chance_modifier_tea
7120
+ value = 2
7121
+ }
7122
+ }
7123
+ if = {
7124
+ limit = {
7125
+ NOT = {
7126
+ is_variable_equal = {
7127
+ which = chance_modifier_tea
7128
+ value = 0
7129
+ }
7130
+ }
7131
+ }
7132
+ divide_variable = {
7133
+ which = base_value_tea
7134
+ which = chance_modifier_tea
7135
+ }
7136
+ }
7137
+ }
7138
+ }
7139
+ determine_value_of_trade_goods_chinaware = {
7140
+ set_variable = {
7141
+ which = base_value_chinaware
7142
+ value = 3
7143
+ }
7144
+ if = {
7145
+ limit = {
7146
+ has_chance_scaling_cost = yes
7147
+ }
7148
+ set_variable = {
7149
+ which = chance_modifier_chinaware
7150
+ value = 1
7151
+ }
7152
+ if = {
7153
+ limit = {
7154
+ has_country_flag = encourage_cash_crops_flag
7155
+ }
7156
+ multiply_variable = {
7157
+ which = chance_modifier_chinaware
7158
+ value = 2
7159
+ }
7160
+ }
7161
+ if = {
7162
+ limit = {
7163
+ OR = {
7164
+ has_increased_trade_goods_discovery = { trade_goods = chinaware }
7165
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = chinaware } }
7166
+ }
7167
+ }
7168
+ multiply_variable = {
7169
+ which = chance_modifier_chinaware
7170
+ value = 2
7171
+ }
7172
+ }
7173
+ if = {
7174
+ limit = {
7175
+ NOT = {
7176
+ is_variable_equal = {
7177
+ which = chance_modifier_chinaware
7178
+ value = 0
7179
+ }
7180
+ }
7181
+ }
7182
+ divide_variable = {
7183
+ which = base_value_chinaware
7184
+ which = chance_modifier_chinaware
7185
+ }
7186
+ }
7187
+ }
7188
+ }
7189
+ determine_value_of_trade_goods_spices = {
7190
+ set_variable = {
7191
+ which = base_value_spices
7192
+ value = 3
7193
+ }
7194
+ if = {
7195
+ limit = {
7196
+ has_chance_scaling_cost = yes
7197
+ }
7198
+ set_variable = {
7199
+ which = chance_modifier_spices
7200
+ value = 1
7201
+ }
7202
+ if = {
7203
+ limit = {
7204
+ ROOT = {
7205
+ area = indian_ocean_islands_area
7206
+ }
7207
+ }
7208
+ multiply_variable = {
7209
+ which = chance_modifier_spices
7210
+ value = 0.75
7211
+ }
7212
+ }
7213
+ if = {
7214
+ limit = {
7215
+ ROOT = {
7216
+ OR = {
7217
+ continent = north_america
7218
+ continent = south_america
7219
+ }
7220
+ }
7221
+ }
7222
+ multiply_variable = {
7223
+ which = chance_modifier_spices
7224
+ value = 0.5
7225
+ }
7226
+ }
7227
+ if = {
7228
+ limit = {
7229
+ ROOT = {
7230
+ OR = {
7231
+ region = malaya_region
7232
+ region = indonesia_region
7233
+ region = moluccas_region
7234
+ }
7235
+ }
7236
+ }
7237
+ multiply_variable = {
7238
+ which = chance_modifier_spices
7239
+ value = 1.25
7240
+ }
7241
+ }
7242
+ if = {
7243
+ limit = {
7244
+ has_country_flag = encourage_cash_crops_flag
7245
+ }
7246
+ multiply_variable = {
7247
+ which = chance_modifier_spices
7248
+ value = 2
7249
+ }
7250
+ }
7251
+ if = {
7252
+ limit = {
7253
+ OR = {
7254
+ has_increased_trade_goods_discovery = { trade_goods = spices }
7255
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = spices } }
7256
+ }
7257
+ }
7258
+ multiply_variable = {
7259
+ which = chance_modifier_spices
7260
+ value = 2
7261
+ }
7262
+ }
7263
+ if = {
7264
+ limit = {
7265
+ NOT = {
7266
+ is_variable_equal = {
7267
+ which = chance_modifier_spices
7268
+ value = 0
7269
+ }
7270
+ }
7271
+ }
7272
+ divide_variable = {
7273
+ which = base_value_spices
7274
+ which = chance_modifier_spices
7275
+ }
7276
+ }
7277
+ }
7278
+ }
7279
+ determine_value_of_trade_goods_coffee = {
7280
+ set_variable = {
7281
+ which = base_value_coffee
7282
+ value = 3
7283
+ }
7284
+ if = {
7285
+ limit = {
7286
+ has_chance_scaling_cost = yes
7287
+ }
7288
+ set_variable = {
7289
+ which = chance_modifier_coffee
7290
+ value = 1
7291
+ }
7292
+ if = {
7293
+ limit = {
7294
+ ROOT = {
7295
+ region = colombia_region
7296
+ }
7297
+ }
7298
+ multiply_variable = {
7299
+ which = chance_modifier_coffee
7300
+ value = 1.5
7301
+ }
7302
+ }
7303
+ if = {
7304
+ limit = {
7305
+ has_country_flag = encourage_cash_crops_flag
7306
+ }
7307
+ multiply_variable = {
7308
+ which = chance_modifier_coffee
7309
+ value = 2
7310
+ }
7311
+ }
7312
+ if = {
7313
+ limit = {
7314
+ OR = {
7315
+ has_increased_trade_goods_discovery = { trade_goods = coffee }
7316
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = coffee } }
7317
+ }
7318
+ }
7319
+ multiply_variable = {
7320
+ which = chance_modifier_coffee
7321
+ value = 2
7322
+ }
7323
+ }
7324
+ if = {
7325
+ limit = {
7326
+ NOT = {
7327
+ is_variable_equal = {
7328
+ which = chance_modifier_coffee
7329
+ value = 0
7330
+ }
7331
+ }
7332
+ }
7333
+ divide_variable = {
7334
+ which = base_value_coffee
7335
+ which = chance_modifier_coffee
7336
+ }
7337
+ }
7338
+ }
7339
+ }
7340
+ determine_value_of_trade_goods_cotton = {
7341
+ set_variable = {
7342
+ which = base_value_cotton
7343
+ value = 3
7344
+ }
7345
+ if = {
7346
+ limit = {
7347
+ has_chance_scaling_cost = yes
7348
+ }
7349
+ set_variable = {
7350
+ which = chance_modifier_cotton
7351
+ value = 1
7352
+ }
7353
+ if = {
7354
+ limit = {
7355
+ ROOT = {
7356
+ OR = {
7357
+ has_terrain = farmlands
7358
+ has_terrain = grasslands
7359
+ region = southeast_america_region
7360
+ }
7361
+ }
7362
+ }
7363
+ multiply_variable = {
7364
+ which = chance_modifier_cotton
7365
+ value = 1.5
7366
+ }
7367
+ }
7368
+ if = {
7369
+ limit = {
7370
+ has_country_flag = encourage_cash_crops_flag
7371
+ }
7372
+ multiply_variable = {
7373
+ which = chance_modifier_cotton
7374
+ value = 2
7375
+ }
7376
+ }
7377
+ if = {
7378
+ limit = {
7379
+ OR = {
7380
+ has_increased_trade_goods_discovery = { trade_goods = cotton }
7381
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = cotton } }
7382
+ }
7383
+ }
7384
+ multiply_variable = {
7385
+ which = chance_modifier_cotton
7386
+ value = 2
7387
+ }
7388
+ }
7389
+ if = {
7390
+ limit = {
7391
+ NOT = {
7392
+ is_variable_equal = {
7393
+ which = chance_modifier_cotton
7394
+ value = 0
7395
+ }
7396
+ }
7397
+ }
7398
+ divide_variable = {
7399
+ which = base_value_cotton
7400
+ which = chance_modifier_cotton
7401
+ }
7402
+ }
7403
+ }
7404
+ }
7405
+ determine_value_of_trade_goods_sugar = {
7406
+ set_variable = {
7407
+ which = base_value_sugar
7408
+ value = 3
7409
+ }
7410
+ if = {
7411
+ limit = {
7412
+ has_chance_scaling_cost = yes
7413
+ }
7414
+ set_variable = {
7415
+ which = chance_modifier_sugar
7416
+ value = 1
7417
+ }
7418
+ if = {
7419
+ limit = {
7420
+ ROOT = {
7421
+ is_random_new_world = no
7422
+ NOT = { province_id = 481 }
7423
+ OR = {
7424
+ region = carribeans_region
7425
+ area = ceara_area
7426
+ area = pernambuco_area
7427
+ area = bahia_area
7428
+ area = guyana_area
7429
+ area = suriname_area
7430
+ }
7431
+ }
7432
+ }
7433
+ multiply_variable = {
7434
+ which = chance_modifier_sugar
7435
+ value = 2.5
7436
+ }
7437
+ }
7438
+ if = {
7439
+ limit = {
7440
+ has_country_flag = encourage_cash_crops_flag
7441
+ }
7442
+ multiply_variable = {
7443
+ which = chance_modifier_sugar
7444
+ value = 2
7445
+ }
7446
+ }
7447
+ if = {
7448
+ limit = {
7449
+ OR = {
7450
+ has_increased_trade_goods_discovery = { trade_goods = sugar }
7451
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = sugar } }
7452
+ }
7453
+ }
7454
+ multiply_variable = {
7455
+ which = chance_modifier_sugar
7456
+ value = 2
7457
+ }
7458
+ }
7459
+ if = {
7460
+ limit = {
7461
+ NOT = {
7462
+ is_variable_equal = {
7463
+ which = chance_modifier_sugar
7464
+ value = 0
7465
+ }
7466
+ }
7467
+ }
7468
+ divide_variable = {
7469
+ which = base_value_sugar
7470
+ which = chance_modifier_sugar
7471
+ }
7472
+ }
7473
+ }
7474
+ }
7475
+ determine_value_of_trade_goods_tobacco = {
7476
+ set_variable = {
7477
+ which = base_value_tobacco
7478
+ value = 3
7479
+ }
7480
+ if = {
7481
+ limit = {
7482
+ has_chance_scaling_cost = yes
7483
+ }
7484
+ set_variable = {
7485
+ which = chance_modifier_tobacco
7486
+ value = 1
7487
+ }
7488
+ if = {
7489
+ limit = {
7490
+ ROOT = {
7491
+ OR = {
7492
+ region = northeast_america_region
7493
+ region = southeast_america_region
7494
+ }
7495
+ }
7496
+ }
7497
+ multiply_variable = {
7498
+ which = chance_modifier_tobacco
7499
+ value = 2.5
7500
+ }
7501
+ }
7502
+ if = {
7503
+ limit = {
7504
+ ROOT = {
7505
+ region = australia_region
7506
+ }
7507
+ }
7508
+ multiply_variable = {
7509
+ which = chance_modifier_tobacco
7510
+ value = 0.2
7511
+ }
7512
+ }
7513
+ if = {
7514
+ limit = {
7515
+ has_country_flag = encourage_cash_crops_flag
7516
+ }
7517
+ multiply_variable = {
7518
+ which = chance_modifier_tobacco
7519
+ value = 2
7520
+ }
7521
+ }
7522
+ if = {
7523
+ limit = {
7524
+ OR = {
7525
+ has_increased_trade_goods_discovery = { trade_goods = tobacco }
7526
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = tobacco } }
7527
+ }
7528
+ }
7529
+ multiply_variable = {
7530
+ which = chance_modifier_tobacco
7531
+ value = 2
7532
+ }
7533
+ }
7534
+ if = {
7535
+ limit = {
7536
+ NOT = {
7537
+ is_variable_equal = {
7538
+ which = chance_modifier_tobacco
7539
+ value = 0
7540
+ }
7541
+ }
7542
+ }
7543
+ divide_variable = {
7544
+ which = base_value_tobacco
7545
+ which = chance_modifier_tobacco
7546
+ }
7547
+ }
7548
+ }
7549
+ }
7550
+ determine_value_of_trade_goods_cocoa = {
7551
+ set_variable = {
7552
+ which = base_value_cocoa
7553
+ value = 4
7554
+ }
7555
+ if = {
7556
+ limit = {
7557
+ has_chance_scaling_cost = yes
7558
+ }
7559
+ set_variable = {
7560
+ which = chance_modifier_cocoa
7561
+ value = 1
7562
+ }
7563
+ if = {
7564
+ limit = {
7565
+ OR = {
7566
+ has_increased_trade_goods_discovery = { trade_goods = cocoa }
7567
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = cocoa } }
7568
+ }
7569
+ }
7570
+ multiply_variable = {
7571
+ which = chance_modifier_cocoa
7572
+ value = 2
7573
+ }
7574
+ }
7575
+ if = {
7576
+ limit = {
7577
+ NOT = {
7578
+ is_variable_equal = {
7579
+ which = chance_modifier_cocoa
7580
+ value = 0
7581
+ }
7582
+ }
7583
+ }
7584
+ divide_variable = {
7585
+ which = base_value_cocoa
7586
+ which = chance_modifier_cocoa
7587
+ }
7588
+ }
7589
+ }
7590
+ }
7591
+ determine_value_of_trade_goods_silk = {
7592
+ set_variable = {
7593
+ which = base_value_silk
7594
+ value = 4
7595
+ }
7596
+ if = {
7597
+ limit = {
7598
+ has_chance_scaling_cost = yes
7599
+ }
7600
+ set_variable = {
7601
+ which = chance_modifier_silk
7602
+ value = 1
7603
+ }
7604
+ if = {
7605
+ limit = {
7606
+ ROOT = {
7607
+ normal_or_historical_nations = no
7608
+ FROM = { NOT = { religion_group = dharmic } }
7609
+ FROM = { NOT = { religion_group = eastern } }
7610
+ }
7611
+ }
7612
+ multiply_variable = {
7613
+ which = chance_modifier_silk
7614
+ value = 0.5
7615
+ }
7616
+ }
7617
+ if = {
7618
+ limit = {
7619
+ ROOT = {
7620
+ normal_or_historical_nations = no
7621
+ OR = {
7622
+ region = south_china_region
7623
+ region = xinan_region
7624
+ region = north_china_region
7625
+ region = hindusthan_region
7626
+ region = bengal_region
7627
+ region = deccan_region
7628
+ region = coromandel_region
7629
+ }
7630
+ development_discounting_tribal = 20
7631
+ }
7632
+ }
7633
+ multiply_variable = {
7634
+ which = chance_modifier_silk
7635
+ value = 1.5
7636
+ }
7637
+ }
7638
+ if = {
7639
+ limit = {
7640
+ has_country_flag = encourage_cash_crops_flag
7641
+ }
7642
+ multiply_variable = {
7643
+ which = chance_modifier_silk
7644
+ value = 2
7645
+ }
7646
+ }
7647
+ if = {
7648
+ limit = {
7649
+ OR = {
7650
+ has_increased_trade_goods_discovery = { trade_goods = silk }
7651
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = silk } }
7652
+ }
7653
+ }
7654
+ multiply_variable = {
7655
+ which = chance_modifier_silk
7656
+ value = 2
7657
+ }
7658
+ }
7659
+ if = {
7660
+ limit = {
7661
+ NOT = {
7662
+ is_variable_equal = {
7663
+ which = chance_modifier_silk
7664
+ value = 0
7665
+ }
7666
+ }
7667
+ }
7668
+ divide_variable = {
7669
+ which = base_value_silk
7670
+ which = chance_modifier_silk
7671
+ }
7672
+ }
7673
+ }
7674
+ }
7675
+ determine_value_of_trade_goods_dyes = {
7676
+ set_variable = {
7677
+ which = base_value_dyes
7678
+ value = 4
7679
+ }
7680
+ if = {
7681
+ limit = {
7682
+ has_chance_scaling_cost = yes
7683
+ }
7684
+ set_variable = {
7685
+ which = chance_modifier_dyes
7686
+ value = 1
7687
+ }
7688
+ if = {
7689
+ limit = {
7690
+ has_country_flag = encourage_cash_crops_flag
7691
+ }
7692
+ multiply_variable = {
7693
+ which = chance_modifier_dyes
7694
+ value = 2
7695
+ }
7696
+ }
7697
+ if = {
7698
+ limit = {
7699
+ OR = {
7700
+ has_increased_trade_goods_discovery = { trade_goods = dyes }
7701
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = dyes } }
7702
+ }
7703
+ }
7704
+ multiply_variable = {
7705
+ which = chance_modifier_dyes
7706
+ value = 2
7707
+ }
7708
+ }
7709
+ if = {
7710
+ limit = {
7711
+ NOT = {
7712
+ is_variable_equal = {
7713
+ which = chance_modifier_dyes
7714
+ value = 0
7715
+ }
7716
+ }
7717
+ }
7718
+ divide_variable = {
7719
+ which = base_value_dyes
7720
+ which = chance_modifier_dyes
7721
+ }
7722
+ }
7723
+ }
7724
+ }
7725
+ determine_value_of_trade_goods_tropical_wood = {
7726
+ set_variable = {
7727
+ which = base_value_tropical_wood
7728
+ value = 2
7729
+ }
7730
+ if = {
7731
+ limit = {
7732
+ has_chance_scaling_cost = yes
7733
+ }
7734
+ set_variable = {
7735
+ which = chance_modifier_tropical_wood
7736
+ value = 1
7737
+ }
7738
+ if = {
7739
+ limit = {
7740
+ ROOT = {
7741
+ area = amazon_area
7742
+ }
7743
+ }
7744
+ multiply_variable = {
7745
+ which = chance_modifier_tropical_wood
7746
+ value = 2
7747
+ }
7748
+ }
7749
+ if = {
7750
+ limit = {
7751
+ ROOT = {
7752
+ OR = {
7753
+ region = malaya_region
7754
+ region = moluccas_region
7755
+ region = indonesia_region
7756
+ }
7757
+ }
7758
+ }
7759
+ multiply_variable = {
7760
+ which = chance_modifier_tropical_wood
7761
+ value = 0.5
7762
+ }
7763
+ }
7764
+ if = {
7765
+ limit = {
7766
+ has_country_flag = encourage_cash_crops_flag
7767
+ }
7768
+ multiply_variable = {
7769
+ which = chance_modifier_tropical_wood
7770
+ value = 2
7771
+ }
7772
+ }
7773
+ if = {
7774
+ limit = {
7775
+ OR = {
7776
+ has_increased_trade_goods_discovery = { trade_goods = tropical_wood }
7777
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = tropical_wood } }
7778
+ }
7779
+ }
7780
+ multiply_variable = {
7781
+ which = chance_modifier_tropical_wood
7782
+ value = 2
7783
+ }
7784
+ }
7785
+ if = {
7786
+ limit = {
7787
+ NOT = {
7788
+ is_variable_equal = {
7789
+ which = chance_modifier_tropical_wood
7790
+ value = 0
7791
+ }
7792
+ }
7793
+ }
7794
+ divide_variable = {
7795
+ which = base_value_tropical_wood
7796
+ which = chance_modifier_tropical_wood
7797
+ }
7798
+ }
7799
+ }
7800
+ }
7801
+ determine_value_of_trade_goods_livestock = {
7802
+ set_variable = {
7803
+ which = base_value_livestock
7804
+ value = 2
7805
+ }
7806
+ if = {
7807
+ limit = {
7808
+ has_chance_scaling_cost = yes
7809
+ }
7810
+ set_variable = {
7811
+ which = chance_modifier_livestock
7812
+ value = 1
7813
+ }
7814
+ if = {
7815
+ limit = {
7816
+ ROOT = {
7817
+ province_id = 2002
7818
+ }
7819
+ }
7820
+ multiply_variable = {
7821
+ which = chance_modifier_livestock
7822
+ value = 0.05
7823
+ }
7824
+ }
7825
+ if = {
7826
+ limit = {
7827
+ ROOT = {
7828
+ has_winter = severe_winter
7829
+ }
7830
+ }
7831
+ multiply_variable = {
7832
+ which = chance_modifier_livestock
7833
+ value = 0.75
7834
+ }
7835
+ }
7836
+ if = {
7837
+ limit = {
7838
+ ROOT = {
7839
+ OR = {
7840
+ has_terrain = desert
7841
+ has_terrain = savannah
7842
+ has_terrain = highlands
7843
+ has_terrain = drylands
7844
+ has_climate = arid
7845
+ }
7846
+ }
7847
+ }
7848
+ multiply_variable = {
7849
+ which = chance_modifier_livestock
7850
+ value = 1.25
7851
+ }
7852
+ }
7853
+ if = {
7854
+ limit = {
7855
+ ROOT = {
7856
+ has_terrain = steppe
7857
+ }
7858
+ }
7859
+ multiply_variable = {
7860
+ which = chance_modifier_livestock
7861
+ value = 1.5
7862
+ }
7863
+ }
7864
+ if = {
7865
+ limit = {
7866
+ ROOT = {
7867
+ region = central_asia_region
7868
+ }
7869
+ }
7870
+ multiply_variable = {
7871
+ which = chance_modifier_livestock
7872
+ value = 1.5
7873
+ }
7874
+ }
7875
+ if = {
7876
+ limit = {
7877
+ ROOT = {
7878
+ region = mongolia_region
7879
+ }
7880
+ }
7881
+ multiply_variable = {
7882
+ which = chance_modifier_livestock
7883
+ value = 1.5
7884
+ }
7885
+ }
7886
+ if = {
7887
+ limit = {
7888
+ ROOT = {
7889
+ region = tibet_region
7890
+ }
7891
+ }
7892
+ multiply_variable = {
7893
+ which = chance_modifier_livestock
7894
+ value = 1.5
7895
+ }
7896
+ }
7897
+ if = {
7898
+ limit = {
7899
+ ROOT = {
7900
+ region = central_africa_region
7901
+ }
7902
+ }
7903
+ multiply_variable = {
7904
+ which = chance_modifier_livestock
7905
+ value = 1.5
7906
+ }
7907
+ }
7908
+ if = {
7909
+ limit = {
7910
+ OR = {
7911
+ has_increased_trade_goods_discovery = { trade_goods = livestock }
7912
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = livestock } }
7913
+ }
7914
+ }
7915
+ multiply_variable = {
7916
+ which = chance_modifier_livestock
7917
+ value = 2
7918
+ }
7919
+ }
7920
+ if = {
7921
+ limit = {
7922
+ NOT = {
7923
+ is_variable_equal = {
7924
+ which = chance_modifier_livestock
7925
+ value = 0
7926
+ }
7927
+ }
7928
+ }
7929
+ divide_variable = {
7930
+ which = base_value_livestock
7931
+ which = chance_modifier_livestock
7932
+ }
7933
+ }
7934
+ }
7935
+ }
7936
+ determine_value_of_trade_goods_incense = {
7937
+ set_variable = {
7938
+ which = base_value_incense
7939
+ value = 2.5
7940
+ }
7941
+ if = {
7942
+ limit = {
7943
+ has_chance_scaling_cost = yes
7944
+ }
7945
+ set_variable = {
7946
+ which = chance_modifier_incense
7947
+ value = 1
7948
+ }
7949
+ if = {
7950
+ limit = {
7951
+ ROOT = {
7952
+ area = indian_ocean_islands_area
7953
+ }
7954
+ }
7955
+ multiply_variable = {
7956
+ which = chance_modifier_incense
7957
+ value = 0.5
7958
+ }
7959
+ }
7960
+ if = {
7961
+ limit = {
7962
+ ROOT = {
7963
+ region = arabia_region
7964
+ }
7965
+ }
7966
+ multiply_variable = {
7967
+ which = chance_modifier_incense
7968
+ value = 1.25
7969
+ }
7970
+ }
7971
+ if = {
7972
+ limit = {
7973
+ has_country_flag = encourage_cash_crops_flag
7974
+ }
7975
+ multiply_variable = {
7976
+ which = chance_modifier_incense
7977
+ value = 2
7978
+ }
7979
+ }
7980
+ if = {
7981
+ limit = {
7982
+ OR = {
7983
+ has_increased_trade_goods_discovery = { trade_goods = incense }
7984
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = incense } }
7985
+ }
7986
+ }
7987
+ multiply_variable = {
7988
+ which = chance_modifier_incense
7989
+ value = 2
7990
+ }
7991
+ }
7992
+ if = {
7993
+ limit = {
7994
+ NOT = {
7995
+ is_variable_equal = {
7996
+ which = chance_modifier_incense
7997
+ value = 0
7998
+ }
7999
+ }
8000
+ }
8001
+ divide_variable = {
8002
+ which = base_value_incense
8003
+ which = chance_modifier_incense
8004
+ }
8005
+ }
8006
+ }
8007
+ }
8008
+ determine_value_of_trade_goods_glass = {
8009
+ set_variable = {
8010
+ which = base_value_glass
8011
+ value = 3
8012
+ }
8013
+ if = {
8014
+ limit = {
8015
+ has_chance_scaling_cost = yes
8016
+ }
8017
+ set_variable = {
8018
+ which = chance_modifier_glass
8019
+ value = 1
8020
+ }
8021
+ if = {
8022
+ limit = {
8023
+ ROOT = {
8024
+ development_discounting_tribal = 22
8025
+ }
8026
+ }
8027
+ multiply_variable = {
8028
+ which = chance_modifier_glass
8029
+ value = 2
8030
+ }
8031
+ }
8032
+ if = {
8033
+ limit = {
8034
+ OR = {
8035
+ has_increased_trade_goods_discovery = { trade_goods = glass }
8036
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = glass } }
8037
+ }
8038
+ }
8039
+ multiply_variable = {
8040
+ which = chance_modifier_glass
8041
+ value = 2
8042
+ }
8043
+ }
8044
+ if = {
8045
+ limit = {
8046
+ NOT = {
8047
+ is_variable_equal = {
8048
+ which = chance_modifier_glass
8049
+ value = 0
8050
+ }
8051
+ }
8052
+ }
8053
+ divide_variable = {
8054
+ which = base_value_glass
8055
+ which = chance_modifier_glass
8056
+ }
8057
+ }
8058
+ }
8059
+ }
8060
+ determine_value_of_trade_goods_paper = {
8061
+ set_variable = {
8062
+ which = base_value_paper
8063
+ value = 3.5
8064
+ }
8065
+ if = {
8066
+ limit = {
8067
+ has_chance_scaling_cost = yes
8068
+ }
8069
+ set_variable = {
8070
+ which = chance_modifier_paper
8071
+ value = 1
8072
+ }
8073
+ if = {
8074
+ limit = {
8075
+ ROOT = {
8076
+ development_discounting_tribal = 22
8077
+ }
8078
+ }
8079
+ multiply_variable = {
8080
+ which = chance_modifier_paper
8081
+ value = 2
8082
+ }
8083
+ }
8084
+ if = {
8085
+ limit = {
8086
+ OR = {
8087
+ has_increased_trade_goods_discovery = { trade_goods = paper }
8088
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = paper } }
8089
+ }
8090
+ }
8091
+ multiply_variable = {
8092
+ which = chance_modifier_paper
8093
+ value = 2
8094
+ }
8095
+ }
8096
+ if = {
8097
+ limit = {
8098
+ NOT = {
8099
+ is_variable_equal = {
8100
+ which = chance_modifier_paper
8101
+ value = 0
8102
+ }
8103
+ }
8104
+ }
8105
+ divide_variable = {
8106
+ which = base_value_paper
8107
+ which = chance_modifier_paper
8108
+ }
8109
+ }
8110
+ }
8111
+ }
8112
+ determine_value_of_trade_goods_gems = {
8113
+ set_variable = {
8114
+ which = base_value_gems
8115
+ value = 4
8116
+ }
8117
+ if = {
8118
+ limit = {
8119
+ has_chance_scaling_cost = yes
8120
+ }
8121
+ set_variable = {
8122
+ which = chance_modifier_gems
8123
+ value = 1
8124
+ }
8125
+ if = {
8126
+ limit = {
8127
+ ROOT = {
8128
+ region = moluccas_region
8129
+ }
8130
+ }
8131
+ multiply_variable = {
8132
+ which = chance_modifier_gems
8133
+ value = 1.2
8134
+ }
8135
+ }
8136
+ if = {
8137
+ limit = {
8138
+ ROOT = {
8139
+ region = indonesia_region
8140
+ }
8141
+ }
8142
+ multiply_variable = {
8143
+ which = chance_modifier_gems
8144
+ value = 0.75
8145
+ }
8146
+ }
8147
+ if = {
8148
+ limit = {
8149
+ ROOT = {
8150
+ continent = oceania
8151
+ }
8152
+ }
8153
+ multiply_variable = {
8154
+ which = chance_modifier_gems
8155
+ value = 0.5
8156
+ }
8157
+ }
8158
+ if = {
8159
+ limit = {
8160
+ ROOT = {
8161
+ OR = {
8162
+ continent = south_america
8163
+ continent = north_america
8164
+ }
8165
+ }
8166
+ }
8167
+ multiply_variable = {
8168
+ which = chance_modifier_gems
8169
+ value = 1.5
8170
+ }
8171
+ }
8172
+ if = {
8173
+ limit = {
8174
+ ROOT = {
8175
+ OR = {
8176
+ area = diamantina_area
8177
+ area = bogota_area
8178
+ area = murray_river_area #Opal
8179
+ }
8180
+ }
8181
+ }
8182
+ multiply_variable = {
8183
+ which = chance_modifier_gems
8184
+ value = 2
8185
+ }
8186
+ }
8187
+ if = {
8188
+ limit = {
8189
+ ROOT = {
8190
+ OR = {
8191
+ province_id = 1093 #Opal
8192
+ province_id = 2736 #Opal
8193
+ province_id = 4862 #Opal
8194
+ }
8195
+ }
8196
+ }
8197
+ multiply_variable = {
8198
+ which = chance_modifier_gems
8199
+ value = 2
8200
+ }
8201
+ }
8202
+ if = {
8203
+ limit = {
8204
+ ROOT = {
8205
+ region = brazil_region
8206
+ }
8207
+ }
8208
+ multiply_variable = {
8209
+ which = chance_modifier_gems
8210
+ value = 1.5
8211
+ }
8212
+ }
8213
+ if = {
8214
+ limit = {
8215
+ ROOT = {
8216
+ OR = {
8217
+ has_terrain = mountain
8218
+ has_terrain = jungle
8219
+ has_terrain = hills
8220
+ has_terrain = highlands
8221
+ has_terrain = coastline #Pearls
8222
+ }
8223
+ }
8224
+ }
8225
+ multiply_variable = {
8226
+ which = chance_modifier_gems
8227
+ value = 1.5
8228
+ }
8229
+ }
8230
+ if = {
8231
+ limit = {
8232
+ ROOT = {
8233
+ is_random_new_world = yes
8234
+ has_terrain = mountain
8235
+ continent = new_world #Always in RNW
8236
+ }
8237
+ }
8238
+ multiply_variable = {
8239
+ which = chance_modifier_gems
8240
+ value = 1.5
8241
+ }
8242
+ }
8243
+ if = {
8244
+ limit = {
8245
+ ROOT = {
8246
+ normal_or_historical_nations = no
8247
+ }
8248
+ }
8249
+ multiply_variable = {
8250
+ which = chance_modifier_gems
8251
+ value = 1.5
8252
+ }
8253
+ }
8254
+ if = {
8255
+ limit = {
8256
+ has_country_flag = encourage_cash_crops_flag
8257
+ }
8258
+ multiply_variable = {
8259
+ which = chance_modifier_gems
8260
+ value = 1.5
8261
+ }
8262
+ }
8263
+ if = {
8264
+ limit = {
8265
+ OR = {
8266
+ has_increased_trade_goods_discovery = { trade_goods = gems }
8267
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = gems } }
8268
+ }
8269
+ }
8270
+ multiply_variable = {
8271
+ which = chance_modifier_gems
8272
+ value = 1.5
8273
+ }
8274
+ }
8275
+ if = {
8276
+ limit = {
8277
+ NOT = {
8278
+ is_variable_equal = {
8279
+ which = chance_modifier_gems
8280
+ value = 0
8281
+ }
8282
+ }
8283
+ }
8284
+ divide_variable = {
8285
+ which = base_value_gems
8286
+ which = chance_modifier_gems
8287
+ }
8288
+ }
8289
+ }
8290
+ }
8291
+ determine_value_of_trade_goods_coal = {
8292
+ set_variable = {
8293
+ which = base_value_coal
8294
+ value = 10
8295
+ }
8296
+ if = {
8297
+ limit = {
8298
+ #has_chance_scaling_cost = yes
8299
+ always = no
8300
+ }
8301
+ set_variable = {
8302
+ which = chance_modifier_coal
8303
+ value = 1
8304
+ }
8305
+ if = {
8306
+ limit = {
8307
+ NOT = {
8308
+ is_variable_equal = {
8309
+ which = chance_modifier_coal
8310
+ value = 0
8311
+ }
8312
+ }
8313
+ }
8314
+ divide_variable = {
8315
+ which = base_value_coal
8316
+ which = chance_modifier_coal
8317
+ }
8318
+ }
8319
+ }
8320
+ }
8321
+ determine_value_of_trade_goods_cloves = {
8322
+ set_variable = {
8323
+ which = base_value_cloves
8324
+ value = 8
8325
+ }
8326
+ if = {
8327
+ limit = {
8328
+ has_chance_scaling_cost = yes
8329
+ }
8330
+ set_variable = {
8331
+ which = chance_modifier_cloves
8332
+ value = 1
8333
+ }
8334
+ if = {
8335
+ limit = {
8336
+ has_country_flag = encourage_cash_crops_flag
8337
+ }
8338
+ multiply_variable = {
8339
+ which = chance_modifier_cloves
8340
+ value = 2
8341
+ }
8342
+ }
8343
+ if = {
8344
+ limit = {
8345
+ OR = {
8346
+ has_increased_trade_goods_discovery = { trade_goods = cloves }
8347
+ colonial_parent = { has_increased_trade_goods_discovery = { trade_goods = cloves } }
8348
+ }
8349
+ }
8350
+ multiply_variable = {
8351
+ which = chance_modifier_cloves
8352
+ value = 2
8353
+ }
8354
+ }
8355
+ if = {
8356
+ limit = {
8357
+ NOT = {
8358
+ is_variable_equal = {
8359
+ which = chance_modifier_cloves
8360
+ value = 0
8361
+ }
8362
+ }
8363
+ }
8364
+ divide_variable = {
8365
+ which = base_value_cloves
8366
+ which = chance_modifier_cloves
8367
+ }
8368
+ }
8369
+ }
8370
+ }
8371
+ determine_value_of_trade_goods_unknown = {
8372
+ set_variable = {
8373
+ which = base_value_unknown
8374
+ value = 0
8375
+ }
8376
+ }
8377
+
8378
+ # The design behind it is the following:
8379
+ # 1. You colonize a province
8380
+ # 2. A pop-up event appears which gives you the choice to select the trade good for the province
8381
+ # 3. Every trade good has an own base price assigned to them. This base price should be their base value * 5 Ducats.
8382
+ # 4. Trade goods above 3 value also cost ADM power.
8383
+ # 5. Every time you select a certain trade good, the price increases
8384
+ # 6. The new price is calculated with this formula: (1 + (times you upgraded it)) * 5 (base trade good price)
8385
+ # 7. ADM costs are calculated as follows: (base trade good pirce - 2.5) * 25 * (times YOU upgraded it) as long (base trade good pirce - 2.5) => 0
8386
+ # 7. Gold will be counted as having a trade value of 10 Ducats so not all of the whole new world becomes one huge gold cluster
8387
+
8388
+ calculate_trade_goods_price = {
8389
+ owner = {
8390
+ determine_value_of_trade_goods_$trade_goods$ = yes
8391
+ set_variable = {
8392
+ which = final_ducat_price_$trade_goods$
8393
+ value = 1
8394
+ }
8395
+ set_variable = {
8396
+ which = final_adm_cost_$trade_goods$
8397
+ which = base_value_$trade_goods$
8398
+ }
8399
+ subtract_variable = {
8400
+ which = final_adm_cost_$trade_goods$
8401
+ value = 2.5
8402
+ }
8403
+ multiply_variable = {
8404
+ which = final_adm_cost_$trade_goods$
8405
+ value = 5
8406
+ }
8407
+ #Determine price increase on your own
8408
+ if = {
8409
+ limit = { has_country_flag = ever_selected_$trade_goods$ }
8410
+ change_variable = {
8411
+ which = final_ducat_price_$trade_goods$
8412
+ which = ducat_cost_$trade_goods$_own_counter
8413
+ }
8414
+ if = {
8415
+ limit = {
8416
+ check_variable = {
8417
+ which = final_adm_cost_$trade_goods$
8418
+ value = 1
8419
+ }
8420
+ }
8421
+ multiply_variable = {
8422
+ which = final_adm_cost_$trade_goods$
8423
+ which = ducat_cost_$trade_goods$_own_counter
8424
+ }
8425
+ }
8426
+ }
8427
+ multiply_variable = {
8428
+ which = final_ducat_price_$trade_goods$
8429
+ value = 10
8430
+ }
8431
+ multiply_variable = {
8432
+ which = final_ducat_price_$trade_goods$
8433
+ which = base_value_$trade_goods$
8434
+ }
8435
+ }
8436
+ }
8437
+
8438
+ purchase_trade_goods = {
8439
+ custom_tooltip = ducat_price_for_$trade_goods$_tt
8440
+ if = {
8441
+ limit = {
8442
+ owner = {
8443
+ check_variable = {
8444
+ which = final_adm_cost_$trade_goods$
8445
+ value = 1
8446
+ }
8447
+ }
8448
+ }
8449
+ custom_tooltip = adm_price_for_$trade_goods$_tt
8450
+ }
8451
+ hidden_effect = {
8452
+ owner = {
8453
+ if = {
8454
+ limit = { NOT = { has_country_flag = ever_selected_$trade_goods$ } }
8455
+ set_country_flag = ever_selected_$trade_goods$
8456
+ set_variable = {
8457
+ which = ducat_cost_$trade_goods$_own_counter
8458
+ value = 1
8459
+ }
8460
+ }
8461
+ else = {
8462
+ change_variable = {
8463
+ which = ducat_cost_$trade_goods$_own_counter
8464
+ value = 1
8465
+ }
8466
+ }
8467
+ while = {
8468
+ limit = {
8469
+ check_variable = {
8470
+ which = final_ducat_price_$trade_goods$
8471
+ value = 1
8472
+ }
8473
+ }
8474
+ add_treasury = -1
8475
+ subtract_variable = {
8476
+ which = final_ducat_price_$trade_goods$
8477
+ value = 1
8478
+ }
8479
+ }
8480
+ if = {
8481
+ limit = {
8482
+ check_variable = {
8483
+ which = final_adm_cost_$trade_goods$
8484
+ value = 1
8485
+ }
8486
+ }
8487
+ while = {
8488
+ limit = {
8489
+ check_variable = {
8490
+ which = final_adm_cost_$trade_goods$
8491
+ value = 1
8492
+ }
8493
+ }
8494
+ add_adm_power = -1
8495
+ subtract_variable = {
8496
+ which = final_adm_cost_$trade_goods$
8497
+ value = 1
8498
+ }
8499
+ }
8500
+ }
8501
+ }
8502
+ }
8503
+ change_trade_goods = $trade_goods$
8504
+ }
8505
+
8506
+ change_japan_formable_color = {
8507
+ if = {
8508
+ limit = { was_tag = ASK }
8509
+ change_country_color = {
8510
+ color = { 162 32 65 }
8511
+ }
8512
+ set_country_flag = has_overriden_color_flag
8513
+ }
8514
+ if = {
8515
+ limit = { was_tag = UES }
8516
+ change_country_color = {
8517
+ color = { 200 200 200 }
8518
+ }
8519
+ set_country_flag = has_overriden_color_flag
8520
+ }
8521
+ if = {
8522
+ limit = { was_tag = TKI }
8523
+ change_country_color = {
8524
+ color = { 86 84 162 }
8525
+ }
8526
+ set_country_flag = has_overriden_color_flag
8527
+ }
8528
+ if = {
8529
+ limit = { was_tag = SMZ }
8530
+ change_country_color = {
8531
+ color = { 101 49 142 }
8532
+ }
8533
+ set_country_flag = has_overriden_color_flag
8534
+ }
8535
+ if = {
8536
+ limit = { was_tag = TKD }
8537
+ change_country_color = {
8538
+ color = { 234 85 6 }
8539
+ }
8540
+ set_country_flag = has_overriden_color_flag
8541
+ }
8542
+ if = {
8543
+ limit = { was_tag = SOO }
8544
+ change_country_color = {
8545
+ color = { 231 96 158 }
8546
+ }
8547
+ set_country_flag = has_overriden_color_flag
8548
+ }
8549
+ if = {
8550
+ limit = { was_tag = OUC }
8551
+ change_country_color = {
8552
+ color = { 216 145 145 }
8553
+ }
8554
+ set_country_flag = has_overriden_color_flag
8555
+ }
8556
+ if = {
8557
+ limit = { was_tag = TKG }
8558
+ change_country_color = {
8559
+ color = { 47 93 80 }
8560
+ }
8561
+ set_country_flag = has_overriden_color_flag
8562
+ }
8563
+ if = {
8564
+ limit = { was_tag = YMN }
8565
+ change_country_color = {
8566
+ color = { 140 72 128 }
8567
+ }
8568
+ set_country_flag = has_overriden_color_flag
8569
+ }
8570
+ if = {
8571
+ limit = { was_tag = HSK }
8572
+ change_country_color = {
8573
+ color = { 49 103 69 }
8574
+ }
8575
+ set_country_flag = has_overriden_color_flag
8576
+ }
8577
+ if = {
8578
+ limit = { was_tag = ODA }
8579
+ change_country_color = {
8580
+ color = { 224 4 27 }
8581
+ }
8582
+ set_country_flag = has_overriden_color_flag
8583
+ }
8584
+ if = {
8585
+ limit = { was_tag = SBA }
8586
+ change_country_color = {
8587
+ color = { 0 163 175 }
8588
+ }
8589
+ set_country_flag = has_overriden_color_flag
8590
+ }
8591
+ }
8592
+
8593
+ #civic_republicanism_focus_government
8594
+ #civic_republicanism_focus_expansion
8595
+ #civic_republicanism_focus_technology
8596
+ #civic_republicanism_focus_stability
8597
+ #civic_republicanism_focus_religion
8598
+
8599
+ #civic_republicanism_focus_diplomacy
8600
+ #civic_republicanism_focus_court
8601
+ #civic_republicanism_focus_trade
8602
+ #civic_republicanism_focus_subjects
8603
+ #civic_republicanism_focus_development
8604
+
8605
+ #civic_republicanism_focus_defensive
8606
+ #civic_republicanism_focus_sieges
8607
+ #civic_republicanism_focus_leaders
8608
+ #civic_republicanism_focus_quality
8609
+ #civic_republicanism_focus_naval
8610
+
8611
+ pre_select_possible_ruler_focus_adm = {
8612
+ random_list = {
8613
+ 1 = { set_country_flag = civic_republicanism_focus_government_flag }
8614
+ 1 = { set_country_flag = civic_republicanism_focus_expansion_flag }
8615
+ 1 = { set_country_flag = civic_republicanism_focus_technology_flag }
8616
+ 1 = { set_country_flag = civic_republicanism_focus_stability_flag }
8617
+ 1 = { set_country_flag = civic_republicanism_focus_religion_flag }
8618
+ }
8619
+ }
8620
+ pre_select_possible_ruler_focus_dip = {
8621
+ random_list = {
8622
+ 1 = { set_country_flag = civic_republicanism_focus_diplomacy_flag }
8623
+ 1 = { set_country_flag = civic_republicanism_focus_court_flag }
8624
+ 1 = { set_country_flag = civic_republicanism_focus_trade_flag }
8625
+ 1 = { set_country_flag = civic_republicanism_focus_subjects_flag }
8626
+ 1 = { set_country_flag = civic_republicanism_focus_development_flag }
8627
+ }
8628
+ }
8629
+ pre_select_possible_ruler_focus_mil = {
8630
+ random_list = {
8631
+ 1 = { set_country_flag = civic_republicanism_focus_defensive_flag }
8632
+ 1 = { set_country_flag = civic_republicanism_focus_sieges_flag }
8633
+ 1 = { set_country_flag = civic_republicanism_focus_leaders_flag }
8634
+ 1 = { set_country_flag = civic_republicanism_focus_quality_flag }
8635
+ 1 = { set_country_flag = civic_republicanism_focus_naval_flag }
8636
+ }
8637
+ }
8638
+ pre_select_possible_ruler_focus_rng = {
8639
+ random_list = {
8640
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_government }
8641
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_expansion }
8642
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_technology }
8643
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_stability }
8644
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_religion }
8645
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_diplomacy }
8646
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_court }
8647
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_trade }
8648
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_subjects }
8649
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_development }
8650
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_defensive }
8651
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_sieges }
8652
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_leaders }
8653
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_quality }
8654
+ 1 = { set_country_flag = RNG_civic_republicanism_focus_naval }
8655
+ }
8656
+ }
8657
+
8658
+ pre_select_possible_ruler_focus = {
8659
+ pre_select_possible_ruler_focus_adm = yes
8660
+ pre_select_possible_ruler_focus_dip = yes
8661
+ pre_select_possible_ruler_focus_mil = yes
8662
+ pre_select_possible_ruler_focus_rng = yes
8663
+ }
8664
+
8665
+ assign_ruler_focus_adm = {
8666
+ trigger_switch = {
8667
+ on_trigger = has_country_flag
8668
+ civic_republicanism_focus_government_flag = { add_ruler_modifier = { name = civic_republicanism_focus_government duration = -1 } }
8669
+ civic_republicanism_focus_expansion_flag = { add_ruler_modifier = { name = civic_republicanism_focus_expansion duration = -1 } }
8670
+ civic_republicanism_focus_technology_flag = { add_ruler_modifier = { name = civic_republicanism_focus_technology duration = -1 } }
8671
+ civic_republicanism_focus_stability_flag = { add_ruler_modifier = { name = civic_republicanism_focus_stability duration = -1 } }
8672
+ civic_republicanism_focus_religion_flag = { add_ruler_modifier = { name = civic_republicanism_focus_religion duration = -1 } }
8673
+ }
8674
+ }
8675
+ assign_ruler_focus_dip = {
8676
+ trigger_switch = {
8677
+ on_trigger = has_country_flag
8678
+ civic_republicanism_focus_diplomacy_flag = { add_ruler_modifier = { name = civic_republicanism_focus_diplomacy duration = -1 } }
8679
+ civic_republicanism_focus_court_flag = { add_ruler_modifier = { name = civic_republicanism_focus_court duration = -1 } }
8680
+ civic_republicanism_focus_trade_flag = { add_ruler_modifier = { name = civic_republicanism_focus_trade duration = -1 } }
8681
+ civic_republicanism_focus_subjects_flag = { add_ruler_modifier = { name = civic_republicanism_focus_subjects duration = -1 } }
8682
+ civic_republicanism_focus_development_flag = { add_ruler_modifier = { name = civic_republicanism_focus_development duration = -1 } }
8683
+ }
8684
+ }
8685
+ assign_ruler_focus_mil = {
8686
+ trigger_switch = {
8687
+ on_trigger = has_country_flag
8688
+ civic_republicanism_focus_defensive_flag = { add_ruler_modifier = { name = civic_republicanism_focus_defensive duration = -1 } }
8689
+ civic_republicanism_focus_sieges_flag = { add_ruler_modifier = { name = civic_republicanism_focus_sieges duration = -1 } }
8690
+ civic_republicanism_focus_leaders_flag = { add_ruler_modifier = { name = civic_republicanism_focus_leaders duration = -1 } }
8691
+ civic_republicanism_focus_quality_flag = { add_ruler_modifier = { name = civic_republicanism_focus_quality duration = -1 } }
8692
+ civic_republicanism_focus_naval_flag = { add_ruler_modifier = { name = civic_republicanism_focus_naval duration = -1 } }
8693
+ }
8694
+ }
8695
+ assign_ruler_focus_rng = {
8696
+ trigger_switch = {
8697
+ on_trigger = has_country_flag
8698
+ RNG_civic_republicanism_focus_government = { add_ruler_modifier = { name = civic_republicanism_focus_government duration = -1 } }
8699
+ RNG_civic_republicanism_focus_expansion = { add_ruler_modifier = { name = civic_republicanism_focus_expansion duration = -1 } }
8700
+ RNG_civic_republicanism_focus_technology = { add_ruler_modifier = { name = civic_republicanism_focus_technology duration = -1 } }
8701
+ RNG_civic_republicanism_focus_stability = { add_ruler_modifier = { name = civic_republicanism_focus_stability duration = -1 } }
8702
+ RNG_civic_republicanism_focus_religion = { add_ruler_modifier = { name = civic_republicanism_focus_religion duration = -1 } }
8703
+ RNG_civic_republicanism_focus_diplomacy = { add_ruler_modifier = { name = civic_republicanism_focus_diplomacy duration = -1 } }
8704
+ RNG_civic_republicanism_focus_court = { add_ruler_modifier = { name = civic_republicanism_focus_court duration = -1 } }
8705
+ RNG_civic_republicanism_focus_trade = { add_ruler_modifier = { name = civic_republicanism_focus_trade duration = -1 } }
8706
+ RNG_civic_republicanism_focus_subjects = { add_ruler_modifier = { name = civic_republicanism_focus_subjects duration = -1 } }
8707
+ RNG_civic_republicanism_focus_development = { add_ruler_modifier = { name = civic_republicanism_focus_development duration = -1 } }
8708
+ RNG_civic_republicanism_focus_defensive = { add_ruler_modifier = { name = civic_republicanism_focus_defensive duration = -1 } }
8709
+ RNG_civic_republicanism_focus_sieges = { add_ruler_modifier = { name = civic_republicanism_focus_sieges duration = -1 } }
8710
+ RNG_civic_republicanism_focus_leaders = { add_ruler_modifier = { name = civic_republicanism_focus_leaders duration = -1 } }
8711
+ RNG_civic_republicanism_focus_quality = { add_ruler_modifier = { name = civic_republicanism_focus_quality duration = -1 } }
8712
+ RNG_civic_republicanism_focus_naval = { add_ruler_modifier = { name = civic_republicanism_focus_naval duration = -1 } }
8713
+ }
8714
+ }
8715
+
8716
+ assign_ruler_focus = {
8717
+ assign_ruler_focus_$type$ = yes
8718
+ }
8719
+
8720
+ post_ruler_focus_clearance = {
8721
+ hidden_effect = {
8722
+ clr_country_flag = civic_republicanism_focus_government_flag
8723
+ clr_country_flag = civic_republicanism_focus_expansion_flag
8724
+ clr_country_flag = civic_republicanism_focus_technology_flag
8725
+ clr_country_flag = civic_republicanism_focus_stability_flag
8726
+ clr_country_flag = civic_republicanism_focus_religion_flag
8727
+ clr_country_flag = civic_republicanism_focus_diplomacy_flag
8728
+ clr_country_flag = civic_republicanism_focus_court_flag
8729
+ clr_country_flag = civic_republicanism_focus_trade_flag
8730
+ clr_country_flag = civic_republicanism_focus_subjects_flag
8731
+ clr_country_flag = civic_republicanism_focus_development_flag
8732
+ clr_country_flag = civic_republicanism_focus_defensive_flag
8733
+ clr_country_flag = civic_republicanism_focus_sieges_flag
8734
+ clr_country_flag = civic_republicanism_focus_leaders_flag
8735
+ clr_country_flag = civic_republicanism_focus_quality_flag
8736
+ clr_country_flag = civic_republicanism_focus_naval_flag
8737
+ clr_country_flag = RNG_civic_republicanism_focus_government
8738
+ clr_country_flag = RNG_civic_republicanism_focus_expansion
8739
+ clr_country_flag = RNG_civic_republicanism_focus_technology
8740
+ clr_country_flag = RNG_civic_republicanism_focus_stability
8741
+ clr_country_flag = RNG_civic_republicanism_focus_religion
8742
+ clr_country_flag = RNG_civic_republicanism_focus_diplomacy
8743
+ clr_country_flag = RNG_civic_republicanism_focus_court
8744
+ clr_country_flag = RNG_civic_republicanism_focus_trade
8745
+ clr_country_flag = RNG_civic_republicanism_focus_subjects
8746
+ clr_country_flag = RNG_civic_republicanism_focus_development
8747
+ clr_country_flag = RNG_civic_republicanism_focus_defensive
8748
+ clr_country_flag = RNG_civic_republicanism_focus_sieges
8749
+ clr_country_flag = RNG_civic_republicanism_focus_leaders
8750
+ clr_country_flag = RNG_civic_republicanism_focus_quality
8751
+ clr_country_flag = RNG_civic_republicanism_focus_naval
8752
+ }
8753
+ }
8754
+
8755
+ clr_ruler_focus_modifiers = {
8756
+ post_ruler_focus_clearance = yes
8757
+ if = { limit = { has_country_modifier = civic_republicanism_focus_government } remove_country_modifier = civic_republicanism_focus_government }
8758
+ if = { limit = { has_country_modifier = civic_republicanism_focus_expansion } remove_country_modifier = civic_republicanism_focus_expansion }
8759
+ if = { limit = { has_country_modifier = civic_republicanism_focus_technology } remove_country_modifier = civic_republicanism_focus_technology }
8760
+ if = { limit = { has_country_modifier = civic_republicanism_focus_stability } remove_country_modifier = civic_republicanism_focus_stability }
8761
+ if = { limit = { has_country_modifier = civic_republicanism_focus_religion } remove_country_modifier = civic_republicanism_focus_religion }
8762
+ if = { limit = { has_country_modifier = civic_republicanism_focus_diplomacy } remove_country_modifier = civic_republicanism_focus_diplomacy }
8763
+ if = { limit = { has_country_modifier = civic_republicanism_focus_court } remove_country_modifier = civic_republicanism_focus_court }
8764
+ if = { limit = { has_country_modifier = civic_republicanism_focus_trade } remove_country_modifier = civic_republicanism_focus_trade }
8765
+ if = { limit = { has_country_modifier = civic_republicanism_focus_subjects } remove_country_modifier = civic_republicanism_focus_subjects }
8766
+ if = { limit = { has_country_modifier = civic_republicanism_focus_development } remove_country_modifier = civic_republicanism_focus_development }
8767
+ if = { limit = { has_country_modifier = civic_republicanism_focus_defensive } remove_country_modifier = civic_republicanism_focus_defensive }
8768
+ if = { limit = { has_country_modifier = civic_republicanism_focus_sieges } remove_country_modifier = civic_republicanism_focus_sieges }
8769
+ if = { limit = { has_country_modifier = civic_republicanism_focus_leaders } remove_country_modifier = civic_republicanism_focus_leaders }
8770
+ if = { limit = { has_country_modifier = civic_republicanism_focus_quality } remove_country_modifier = civic_republicanism_focus_quality }
8771
+ if = { limit = { has_country_modifier = civic_republicanism_focus_naval } remove_country_modifier = civic_republicanism_focus_naval }
8772
+ }
8773
+
8774
+ for_every_level_of_advisor_do = {
8775
+ if = {
8776
+ limit = {
8777
+ has_advisor_of_type_and_level = { type = $type$ level = 1 }
8778
+ }
8779
+ $effect$
8780
+ if = {
8781
+ limit = {
8782
+ has_advisor_of_type_and_level = { type = $type$ level = 2 }
8783
+ }
8784
+ $effect$
8785
+ if = {
8786
+ limit = {
8787
+ has_advisor_of_type_and_level = { type = $type$ level = 3 }
8788
+ }
8789
+ $effect$
8790
+ if = {
8791
+ limit = {
8792
+ has_advisor_of_type_and_level = { type = $type$ level = 4 }
8793
+ }
8794
+ $effect$
8795
+ if = {
8796
+ limit = {
8797
+ has_advisor_of_type_and_level = { type = $type$ level = 5 }
8798
+ }
8799
+ $effect$
8800
+ }
8801
+ }
8802
+ }
8803
+ }
8804
+ }
8805
+ }
8806
+
8807
+ complete_artwork_effect_architecture = {
8808
+ if = {
8809
+ limit = { any_owned_province = { has_building = temple } }
8810
+ random_owned_province = { limit = { has_building = temple } upgrade_building = { tax = yes } }
8811
+ }
8812
+ else = {
8813
+ random_owned_province = {
8814
+ limit = { NOT = { has_building = cathedral } religion = root culture = root }
8815
+ add_building = cathedral
8816
+ }
8817
+ }
8818
+ custom_tooltip = DUE_TO_ART_QUALITY_FOLLOWING_EFFECT_HAPPENS_TT
8819
+ if = {
8820
+ limit = { check_variable = { which = art_quality value = 4 } }
8821
+ add_government_power = {
8822
+ mechanic_type = persian_influence_mechanic
8823
+ power_type = persian_influence
8824
+ value = 25
8825
+ }
8826
+ random_owned_province = {
8827
+ limit = { religion = root culture = root }
8828
+ add_base_tax = 3
8829
+ }
8830
+ }
8831
+ else_if = {
8832
+ limit = { check_variable = { which = art_quality value = 3 } }
8833
+ add_government_power = {
8834
+ mechanic_type = persian_influence_mechanic
8835
+ power_type = persian_influence
8836
+ value = 20
8837
+ }
8838
+ random_owned_province = {
8839
+ limit = { religion = root culture = root }
8840
+ add_base_tax = 2
8841
+ }
8842
+ }
8843
+ else_if = {
8844
+ limit = { check_variable = { which = art_quality value = 2 } }
8845
+ add_government_power = {
8846
+ mechanic_type = persian_influence_mechanic
8847
+ power_type = persian_influence
8848
+ value = 15
8849
+ }
8850
+ random_owned_province = {
8851
+ limit = { religion = root culture = root }
8852
+ add_base_tax = 1
8853
+ }
8854
+ }
8855
+ else_if = {
8856
+ limit = { check_variable = { which = art_quality value = 1 } }
8857
+ add_government_power = {
8858
+ mechanic_type = persian_influence_mechanic
8859
+ power_type = persian_influence
8860
+ value = 10
8861
+ }
8862
+ }
8863
+ else = {
8864
+ add_prestige = -20
8865
+ add_government_power = {
8866
+ mechanic_type = persian_influence_mechanic
8867
+ power_type = persian_influence
8868
+ value = -10
8869
+ scaled_with_gain_modifier = no
8870
+ }
8871
+ }
8872
+ }
8873
+ complete_artwork_effect_textiles = {
8874
+ custom_tooltip = DUE_TO_ART_QUALITY_FOLLOWING_EFFECT_HAPPENS_TT
8875
+ if = {
8876
+ limit = { check_variable = { which = art_quality value = 4 } }
8877
+ add_government_power = {
8878
+ mechanic_type = persian_influence_mechanic
8879
+ power_type = persian_influence
8880
+ value = 25
8881
+ }
8882
+ add_mercantilism_or_monarch_power = {
8883
+ amount = 3
8884
+ }
8885
+ }
8886
+ else_if = {
8887
+ limit = { check_variable = { which = art_quality value = 3 } }
8888
+ add_government_power = {
8889
+ mechanic_type = persian_influence_mechanic
8890
+ power_type = persian_influence
8891
+ value = 20
8892
+ }
8893
+ add_mercantilism_or_monarch_power = {
8894
+ amount = 2
8895
+ }
8896
+ }
8897
+ else_if = {
8898
+ limit = { check_variable = { which = art_quality value = 2 } }
8899
+ add_government_power = {
8900
+ mechanic_type = persian_influence_mechanic
8901
+ power_type = persian_influence
8902
+ value = 15
8903
+ }
8904
+ add_mercantilism_or_monarch_power = {
8905
+ amount = 1
8906
+ }
8907
+ }
8908
+ else_if = {
8909
+ limit = { check_variable = { which = art_quality value = 1 } }
8910
+ add_government_power = {
8911
+ mechanic_type = persian_influence_mechanic
8912
+ power_type = persian_influence
8913
+ value = 10
8914
+ }
8915
+ }
8916
+ else = {
8917
+ add_prestige = -20
8918
+ add_government_power = {
8919
+ mechanic_type = persian_influence_mechanic
8920
+ power_type = persian_influence
8921
+ value = -10
8922
+ scaled_with_gain_modifier = no
8923
+ }
8924
+ }
8925
+ }
8926
+ complete_artwork_effect_painting = {
8927
+ custom_tooltip = DUE_TO_ART_QUALITY_FOLLOWING_EFFECT_HAPPENS_TT
8928
+ if = {
8929
+ limit = { check_variable = { which = art_quality value = 4 } }
8930
+ add_government_power = {
8931
+ mechanic_type = persian_influence_mechanic
8932
+ power_type = persian_influence
8933
+ value = 25
8934
+ }
8935
+ add_prestige_or_monarch_power = { amount = 30 }
8936
+ }
8937
+ else_if = {
8938
+ limit = { check_variable = { which = art_quality value = 3 } }
8939
+ add_government_power = {
8940
+ mechanic_type = persian_influence_mechanic
8941
+ power_type = persian_influence
8942
+ value = 20
8943
+ }
8944
+ add_prestige_or_monarch_power = { amount = 20 }
8945
+ }
8946
+ else_if = {
8947
+ limit = { check_variable = { which = art_quality value = 2 } }
8948
+ add_government_power = {
8949
+ mechanic_type = persian_influence_mechanic
8950
+ power_type = persian_influence
8951
+ value = 15
8952
+ }
8953
+ add_prestige_or_monarch_power = { amount = 10 }
8954
+ }
8955
+ else_if = {
8956
+ limit = { check_variable = { which = art_quality value = 1 } }
8957
+ add_government_power = {
8958
+ mechanic_type = persian_influence_mechanic
8959
+ power_type = persian_influence
8960
+ value = 10
8961
+ }
8962
+ }
8963
+ else = {
8964
+ add_prestige = -20
8965
+ add_government_power = {
8966
+ mechanic_type = persian_influence_mechanic
8967
+ power_type = persian_influence
8968
+ value = -10
8969
+ scaled_with_gain_modifier = no
8970
+ }
8971
+ }
8972
+ }
8973
+ complete_artwork_effect = {
8974
+ remove_country_modifier = promoting_$type$
8975
+ complete_artwork_effect_$type$ = yes
8976
+ if = {
8977
+ limit = { has_country_modifier = promoting_art }
8978
+ country_event = {
8979
+ id = promoting_art_events.1
8980
+ }
8981
+ }
8982
+ hidden_effect = {
8983
+ set_variable = {
8984
+ which = art_progress
8985
+ value = 0
8986
+ }
8987
+ set_variable = {
8988
+ which = art_quality
8989
+ value = 1
8990
+ }
8991
+ }
8992
+ }
8993
+ change_art_progress = {
8994
+ change_variable = {
8995
+ which = art_progress
8996
+ value = $amount$
8997
+ }
8998
+ }
8999
+ change_art_quality = {
9000
+ change_variable = {
9001
+ which = art_quality
9002
+ value = $amount$
9003
+ }
9004
+ }
9005
+
9006
+ used_persian_influence_mechanic = {
9007
+ custom_tooltip = used_persian_influence_mechanic_tt
9008
+ hidden_effect = {
9009
+ if = {
9010
+ limit = { NOT = { has_country_flag = persian_influence_setup_flag } }
9011
+ set_country_flag = persian_influence_setup_flag
9012
+ }
9013
+ remove_country_modifier = used_persian_influece_interaction_1
9014
+ remove_country_modifier = used_persian_influece_interaction_2
9015
+ remove_country_modifier = used_persian_influece_interaction_3
9016
+ remove_country_modifier = used_persian_influece_interaction_4
9017
+ remove_country_modifier = used_persian_influece_interaction_5
9018
+ remove_country_modifier = used_persian_influece_interaction_6
9019
+ remove_country_modifier = used_persian_influece_interaction_7
9020
+ remove_country_modifier = used_persian_influece_interaction_8
9021
+ remove_country_modifier = used_persian_influece_interaction_9
9022
+ remove_country_modifier = used_persian_influece_interaction_10
9023
+ remove_country_modifier = used_persian_influece_interaction_11
9024
+ remove_country_modifier = used_persian_influece_interaction_12
9025
+ remove_country_modifier = used_persian_influece_interaction_13
9026
+ remove_country_modifier = used_persian_influece_interaction_14
9027
+ remove_country_modifier = used_persian_influece_interaction_15
9028
+ remove_country_modifier = used_persian_influece_interaction_16
9029
+ remove_country_modifier = used_persian_influece_interaction_17
9030
+ remove_country_modifier = used_persian_influece_interaction_18
9031
+ remove_country_modifier = used_persian_influece_interaction_19
9032
+ remove_country_modifier = used_persian_influece_interaction_20
9033
+ change_variable = {
9034
+ which = persian_influece_counter
9035
+ value = 1
9036
+ }
9037
+ if = {
9038
+ limit = { has_country_flag = improved_elevation_reduction }
9039
+ if = {
9040
+ limit = { check_variable = { which = persian_influece_counter_tooltip value = -400 } }
9041
+ change_variable = {
9042
+ which = persian_influece_counter_tooltip
9043
+ value = -20
9044
+ }
9045
+ }
9046
+ }
9047
+ else = {
9048
+ if = {
9049
+ limit = { check_variable = { which = persian_influece_counter_tooltip value = -200 } }
9050
+ change_variable = {
9051
+ which = persian_influece_counter_tooltip
9052
+ value = -20
9053
+ }
9054
+ }
9055
+ }
9056
+ change_variable = {
9057
+ which = persian_influence_interaction_counter
9058
+ value = 1
9059
+ }
9060
+ if = {
9061
+ limit = { has_country_flag = improved_elevation_reduction }
9062
+ if = {
9063
+ limit = { check_variable = { which = persian_influece_counter value = 10 } }
9064
+ if = {
9065
+ limit = { check_variable = { which = persian_influece_counter value = 15 } }
9066
+ if = {
9067
+ limit = { check_variable = { which = persian_influece_counter value = 17 } }
9068
+ if = {
9069
+ limit = { check_variable = { which = persian_influece_counter value = 19 } }
9070
+ if = {
9071
+ limit = { check_variable = { which = persian_influece_counter value = 20 } }
9072
+ add_country_modifier = { name = used_persian_influece_interaction_20 duration = -1 hidden = yes }
9073
+ }
9074
+ else = {
9075
+ add_country_modifier = { name = used_persian_influece_interaction_19 duration = -1 hidden = yes }
9076
+ }
9077
+ }
9078
+ else = {
9079
+ if = {
9080
+ limit = { check_variable = { which = persian_influece_counter value = 18 } }
9081
+ add_country_modifier = { name = used_persian_influece_interaction_18 duration = -1 hidden = yes }
9082
+ }
9083
+ else = {
9084
+ add_country_modifier = { name = used_persian_influece_interaction_17 duration = -1 hidden = yes }
9085
+ }
9086
+ }
9087
+ }
9088
+ else = {
9089
+ if = {
9090
+ limit = { check_variable = { which = persian_influece_counter value = 16 } }
9091
+ add_country_modifier = { name = used_persian_influece_interaction_16 duration = -1 hidden = yes }
9092
+ }
9093
+ else = {
9094
+ add_country_modifier = { name = used_persian_influece_interaction_15 duration = -1 hidden = yes }
9095
+ }
9096
+ }
9097
+ }
9098
+ else = {
9099
+ if = {
9100
+ limit = { check_variable = { which = persian_influece_counter value = 13 } }
9101
+ if = {
9102
+ limit = { check_variable = { which = persian_influece_counter value = 14 } }
9103
+ add_country_modifier = { name = used_persian_influece_interaction_14 duration = -1 hidden = yes }
9104
+ }
9105
+ else = {
9106
+ add_country_modifier = { name = used_persian_influece_interaction_13 duration = -1 hidden = yes }
9107
+ }
9108
+ }
9109
+ else = {
9110
+ if = {
9111
+ limit = { check_variable = { which = persian_influece_counter value = 11 } }
9112
+ if = {
9113
+ limit = { check_variable = { which = persian_influece_counter value = 12 } }
9114
+ add_country_modifier = { name = used_persian_influece_interaction_12 duration = -1 hidden = yes }
9115
+ }
9116
+ else = {
9117
+ add_country_modifier = { name = used_persian_influece_interaction_11 duration = -1 hidden = yes }
9118
+ }
9119
+ }
9120
+ else = {
9121
+ add_country_modifier = { name = used_persian_influece_interaction_10 duration = -1 hidden = yes }
9122
+ }
9123
+ }
9124
+ }
9125
+ }
9126
+ else = {
9127
+ if = {
9128
+ limit = { check_variable = { which = persian_influece_counter value = 5 } }
9129
+ if = {
9130
+ limit = { check_variable = { which = persian_influece_counter value = 8 } }
9131
+ if = {
9132
+ limit = { check_variable = { which = persian_influece_counter value = 9 } }
9133
+ add_country_modifier = { name = used_persian_influece_interaction_9 duration = -1 hidden = yes }
9134
+ }
9135
+ else = {
9136
+ add_country_modifier = { name = used_persian_influece_interaction_8 duration = -1 hidden = yes }
9137
+ }
9138
+ }
9139
+ else = {
9140
+ if = {
9141
+ limit = { check_variable = { which = persian_influece_counter value = 6 } }
9142
+ if = {
9143
+ limit = { check_variable = { which = persian_influece_counter value = 7 } }
9144
+ add_country_modifier = { name = used_persian_influece_interaction_7 duration = -1 hidden = yes }
9145
+ }
9146
+ else = {
9147
+ add_country_modifier = { name = used_persian_influece_interaction_6 duration = -1 hidden = yes }
9148
+ }
9149
+ }
9150
+ else = {
9151
+ add_country_modifier = { name = used_persian_influece_interaction_5 duration = -1 hidden = yes }
9152
+ }
9153
+ }
9154
+ }
9155
+ else = {
9156
+ if = {
9157
+ limit = { check_variable = { which = persian_influece_counter value = 3 } }
9158
+ if = {
9159
+ limit = { check_variable = { which = persian_influece_counter value = 4 } }
9160
+ add_country_modifier = { name = used_persian_influece_interaction_4 duration = -1 hidden = yes }
9161
+ }
9162
+ add_country_modifier = { name = used_persian_influece_interaction_3 duration = -1 hidden = yes }
9163
+ }
9164
+ else = {
9165
+ if = {
9166
+ limit = { check_variable = { which = persian_influece_counter value = 2 } }
9167
+ add_country_modifier = { name = used_persian_influece_interaction_2 duration = -1 hidden = yes }
9168
+ }
9169
+ else = {
9170
+ add_country_modifier = { name = used_persian_influece_interaction_1 duration = -1 hidden = yes }
9171
+ }
9172
+ }
9173
+ }
9174
+ }
9175
+ }
9176
+ else = {
9177
+ if = {
9178
+ limit = { check_variable = { which = persian_influece_counter value = 5 } }
9179
+ if = {
9180
+ limit = { check_variable = { which = persian_influece_counter value = 7 } }
9181
+ if = {
9182
+ limit = { check_variable = { which = persian_influece_counter value = 9 } }
9183
+ if = {
9184
+ limit = { check_variable = { which = persian_influece_counter value = 10 } }
9185
+ add_country_modifier = { name = used_persian_influece_interaction_10 duration = -1 hidden = yes }
9186
+ }
9187
+ else = {
9188
+ add_country_modifier = { name = used_persian_influece_interaction_9 duration = -1 hidden = yes }
9189
+ }
9190
+ }
9191
+ else = {
9192
+ if = {
9193
+ limit = { check_variable = { which = persian_influece_counter value = 8 } }
9194
+ add_country_modifier = { name = used_persian_influece_interaction_8 duration = -1 hidden = yes }
9195
+ }
9196
+ else = {
9197
+ add_country_modifier = { name = used_persian_influece_interaction_7 duration = -1 hidden = yes }
9198
+ }
9199
+ }
9200
+ }
9201
+ else = {
9202
+ if = {
9203
+ limit = { check_variable = { which = persian_influece_counter value = 6 } }
9204
+ add_country_modifier = { name = used_persian_influece_interaction_6 duration = -1 hidden = yes }
9205
+ }
9206
+ else = {
9207
+ add_country_modifier = { name = used_persian_influece_interaction_5 duration = -1 hidden = yes }
9208
+ }
9209
+ }
9210
+ }
9211
+ else = {
9212
+ if = {
9213
+ limit = { check_variable = { which = persian_influece_counter value = 3 } }
9214
+ if = {
9215
+ limit = { check_variable = { which = persian_influece_counter value = 4 } }
9216
+ add_country_modifier = { name = used_persian_influece_interaction_4 duration = -1 hidden = yes }
9217
+ }
9218
+ add_country_modifier = { name = used_persian_influece_interaction_3 duration = -1 hidden = yes }
9219
+ }
9220
+ else = {
9221
+ if = {
9222
+ limit = { check_variable = { which = persian_influece_counter value = 2 } }
9223
+ add_country_modifier = { name = used_persian_influece_interaction_2 duration = -1 hidden = yes }
9224
+ }
9225
+ else = {
9226
+ add_country_modifier = { name = used_persian_influece_interaction_1 duration = -1 hidden = yes }
9227
+ }
9228
+ }
9229
+ }
9230
+ }
9231
+ }
9232
+ }
9233
+
9234
+ improve_elevation_effect = {
9235
+ custom_tooltip = improve_elevation_effect_tt
9236
+ hidden_effect = {
9237
+ set_country_flag = improved_elevation_effect
9238
+ }
9239
+ }
9240
+
9241
+ improve_elevation_reduction = {
9242
+ custom_tooltip = improve_elevation_reduction_tt
9243
+ hidden_effect = {
9244
+ set_country_flag = improved_elevation_reduction
9245
+ }
9246
+ }
9247
+
9248
+ improve_persian_influence_abilities = {
9249
+ custom_tooltip = improve_persian_influence_abilities_tt
9250
+ hidden_effect = {
9251
+ set_country_flag = improved_persian_influence_abilities
9252
+ }
9253
+ }
9254
+
9255
+ improve_fabricate_religious_conflict = {
9256
+ custom_tooltip = improve_fabricate_religious_conflict_tt
9257
+ hidden_effect = {
9258
+ set_country_flag = reduced_spread_faith_cb_spy_cost
9259
+ }
9260
+ }
9261
+
9262
+ consume_persian_influence_reduction = {
9263
+ remove_country_modifier = used_persian_influece_interaction_1
9264
+ remove_country_modifier = used_persian_influece_interaction_2
9265
+ remove_country_modifier = used_persian_influece_interaction_3
9266
+ remove_country_modifier = used_persian_influece_interaction_4
9267
+ remove_country_modifier = used_persian_influece_interaction_5
9268
+ remove_country_modifier = used_persian_influece_interaction_6
9269
+ remove_country_modifier = used_persian_influece_interaction_7
9270
+ remove_country_modifier = used_persian_influece_interaction_8
9271
+ remove_country_modifier = used_persian_influece_interaction_9
9272
+ remove_country_modifier = used_persian_influece_interaction_10
9273
+ remove_country_modifier = used_persian_influece_interaction_11
9274
+ remove_country_modifier = used_persian_influece_interaction_12
9275
+ remove_country_modifier = used_persian_influece_interaction_13
9276
+ remove_country_modifier = used_persian_influece_interaction_14
9277
+ remove_country_modifier = used_persian_influece_interaction_15
9278
+ remove_country_modifier = used_persian_influece_interaction_16
9279
+ remove_country_modifier = used_persian_influece_interaction_17
9280
+ remove_country_modifier = used_persian_influece_interaction_18
9281
+ remove_country_modifier = used_persian_influece_interaction_19
9282
+ remove_country_modifier = used_persian_influece_interaction_20
9283
+ change_variable = {
9284
+ which = persian_influece_counter
9285
+ value = 0
9286
+ }
9287
+ change_variable = {
9288
+ which = persian_influece_counter_tooltip
9289
+ value = 0
9290
+ }
9291
+ }
9292
+
9293
+ #Check with "has_unlocked_decision = { type = <decisions id> }"
9294
+ #Supports the following decisions
9295
+ #################################
9296
+ # grand_vizier_selection
9297
+ # horse_breeding_decision
9298
+ unlock_decision = {
9299
+ custom_tooltip = unlock_decision_$type$_tt
9300
+ hidden_effect = { set_country_flag = unlocked_decision_$type$ }
9301
+ [[effect_tooltip]
9302
+ custom_tooltip = unlock_decision_effect_tt
9303
+ $effect_tooltip$
9304
+ ]
9305
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
9306
+ }
9307
+ lock_decision = {
9308
+ custom_tooltip = lock_decision_$type$_tt
9309
+ hidden_effect = { clr_country_flag = unlocked_decision_$type$ }
9310
+ }
9311
+
9312
+ #Supports the following holy orders
9313
+ ###################################
9314
+ # savafid_order
9315
+ # zahediyeh_order
9316
+ unlock_holy_order = {
9317
+ if = {
9318
+ limit = { has_dlc = "Golden Century" }
9319
+ custom_tooltip = unlock_holy_order_$type$_tt
9320
+ }
9321
+ hidden_effect = { set_country_flag = unlocked_holy_order_$type$ }
9322
+ }
9323
+
9324
+ #Supports the following arguments
9325
+ #################################
9326
+ # fabricate_spread_the_true_faith_cb
9327
+ unlock_diplomatic_action = {
9328
+ custom_tooltip = unlock_$type$_tt
9329
+ hidden_effect = {
9330
+ set_country_flag = unlocked_diplomatic_action_$type$
9331
+ }
9332
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
9333
+ }
9334
+
9335
+ enable_great_holy_war_cb = {
9336
+ custom_tooltip = enable_great_holy_war_cb_tt
9337
+ hidden_effect = { set_country_flag = enabled_great_holy_war_cb }
9338
+ }
9339
+
9340
+ change_asha_vahishta = {
9341
+ if = {
9342
+ limit = { has_government_mechanic = the_three_royal_fires_mechanic }
9343
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
9344
+ add_government_power = {
9345
+ mechanic_type = the_three_royal_fires_mechanic
9346
+ power_type = asha_vahishta
9347
+ value = $value$
9348
+ }
9349
+ }
9350
+ }
9351
+
9352
+ remove_asha_vahishta_loss_from_missionaries = {
9353
+ custom_tooltip = remove_asha_vahishta_loss_from_missionaries_tt
9354
+ hidden_effect = {
9355
+ set_country_flag = removed_asha_vahishta_loss_from_missionaries
9356
+ }
9357
+ }
9358
+
9359
+ upgrade_the_three_fire = {
9360
+ custom_tooltip = upgrade_the_three_fire_tt
9361
+ hidden_effect = {
9362
+ set_country_flag = upgraded_the_three_fire
9363
+ }
9364
+ }
9365
+
9366
+ remove_asha_vahishta_loss_from_force_conversion = {
9367
+ custom_tooltip = remove_asha_vahishta_loss_from_force_conversion_tt
9368
+ hidden_effect = {
9369
+ set_country_flag = removed_asha_vahishta_loss_from_force_conversion
9370
+ }
9371
+ }
9372
+
9373
+ enable_three_royal_fires_mana_generation = {
9374
+ custom_tooltip = enable_three_royal_fires_mana_generation_tt
9375
+ hidden_effect = {
9376
+ set_country_flag = enabled_three_royal_fires_mana_generation
9377
+ }
9378
+ }
9379
+
9380
+ # All is province scope here
9381
+ ## add/upgrade trade building in province
9382
+ ### add_or_upgrade_trade_building = yes # feel free to refactor to include the amount of upgrades
9383
+ add_or_upgrade_trade_building = {
9384
+ custom_tooltip = add_or_upgrade_trade_building_tt
9385
+ hidden_effect = {
9386
+ if = {
9387
+ limit = { has_building = marketplace }
9388
+ add_building = trade_depot
9389
+ }
9390
+ else_if = {
9391
+ limit = { has_building = trade_depot }
9392
+ add_building = stock_exchange
9393
+ }
9394
+ else_if = {
9395
+ limit = { has_building = stock_exchange }
9396
+ add_base_tax = 1
9397
+ add_base_production = 1
9398
+ }
9399
+ else = { add_building = marketplace }
9400
+ }
9401
+ }
9402
+
9403
+ add_or_upgrade_tax_building = {
9404
+ custom_tooltip = add_or_upgrade_tax_building_tt
9405
+ hidden_effect = {
9406
+ if = {
9407
+ limit = { has_building = temple }
9408
+ add_building = cathedral
9409
+ }
9410
+ else_if = {
9411
+ limit = { has_building = cathedral }
9412
+ add_base_tax = 2
9413
+ }
9414
+ else = { add_building = temple }
9415
+ }
9416
+ }
9417
+
9418
+ add_or_upgrade_production_building = {
9419
+ custom_tooltip = add_or_upgrade_production_building_tt
9420
+ hidden_effect = {
9421
+ if = {
9422
+ limit = { has_building = workshop }
9423
+ add_building = counting_house
9424
+ }
9425
+ else_if = {
9426
+ limit = { has_building = counting_house }
9427
+ add_base_production = 2
9428
+ }
9429
+ else = { add_building = workshop }
9430
+ }
9431
+ }
9432
+
9433
+ add_or_upgrade_dock_building = {
9434
+ custom_tooltip = add_or_upgrade_dock_building_tt
9435
+ hidden_effect = {
9436
+ if = {
9437
+ limit = { has_building = dock }
9438
+ add_building = drydock
9439
+ }
9440
+ else_if = {
9441
+ limit = { has_building = drydock }
9442
+ ROOT = { add_sailors = 0.5 }
9443
+ }
9444
+ else = { add_building = dock }
9445
+ }
9446
+ }
9447
+
9448
+ add_or_upgrade_shipyard_building = {
9449
+ custom_tooltip = add_or_upgrade_shipyard_building_tt
9450
+ hidden_effect = {
9451
+ if = {
9452
+ limit = { has_building = shipyard }
9453
+ add_building = grand_shipyard
9454
+ }
9455
+ else_if = {
9456
+ limit = { has_building = grand_shipyard }
9457
+ ROOT = { add_sailors = 0.5 }
9458
+ }
9459
+ else = { add_building = shipyard }
9460
+ }
9461
+ }
9462
+
9463
+ add_or_upgrade_manpower_building = {
9464
+ custom_tooltip = add_or_upgrade_manpower_building_tt
9465
+ hidden_effect = {
9466
+ if = {
9467
+ limit = { has_building = barracks }
9468
+ add_building = training_fields
9469
+ }
9470
+ else_if = {
9471
+ limit = { has_building = training_fields }
9472
+ add_base_tax = 1
9473
+ add_base_manpower = 1
9474
+ }
9475
+ else = { add_building = barracks }
9476
+ }
9477
+ }
9478
+
9479
+ add_or_upgrade_forcelimit_building = {
9480
+ custom_tooltip = add_or_upgrade_forcelimit_building_tt
9481
+ hidden_effect = {
9482
+ if = {
9483
+ limit = { has_building = regimental_camp }
9484
+ add_building = conscription_center
9485
+ }
9486
+ else_if = {
9487
+ limit = { has_building = conscription_center }
9488
+ add_base_manpower = 2
9489
+ }
9490
+ else = { add_building = regimental_camp }
9491
+ }
9492
+ }
9493
+
9494
+ add_or_upgrade_university_building = {
9495
+ custom_tooltip = add_or_upgrade_university_building_tt
9496
+ hidden_effect = {
9497
+ if = {
9498
+ limit = { has_building = university }
9499
+ add_base_tax = 1
9500
+ add_base_production = 1
9501
+ add_base_manpower = 1
9502
+ }
9503
+ else = { add_building = university }
9504
+ }
9505
+ }
9506
+
9507
+ add_or_upgrade_courthouse_building = {
9508
+ custom_tooltip = add_or_upgrade_courthouse_building_tt
9509
+ hidden_effect = {
9510
+ if = {
9511
+ limit = { has_building = courthouse }
9512
+ add_building = town_hall
9513
+ }
9514
+ else_if = {
9515
+ limit = { has_building = town_hall }
9516
+ add_base_tax = 1
9517
+ add_base_production = 1
9518
+ add_base_manpower = 1
9519
+ }
9520
+ else = { add_building = courthouse }
9521
+ }
9522
+ }
9523
+
9524
+ add_or_upgrade_fort_building = {
9525
+ custom_tooltip = add_or_upgrade_fort_building_tt
9526
+ hidden_effect = {
9527
+ if = {
9528
+ limit = { has_building = fort_15th }
9529
+ add_building = fort_16th
9530
+ }
9531
+ else_if = {
9532
+ limit = { has_building = fort_16th }
9533
+ add_building = fort_17th
9534
+ }
9535
+ else_if = {
9536
+ limit = { has_building = fort_17th }
9537
+ add_building = fort_18th
9538
+ }
9539
+ else_if = {
9540
+ limit = { has_building = fort_18th }
9541
+ add_base_manpower = 3
9542
+ }
9543
+ else = { add_building = fort_15th }
9544
+ }
9545
+ }
9546
+
9547
+ add_or_upgrade_naval_defense_building = {
9548
+ custom_tooltip = add_or_upgrade_naval_defense_building_tt
9549
+ hidden_effect = {
9550
+ if = {
9551
+ limit = { has_building = coastal_defence }
9552
+ add_building = naval_battery
9553
+ }
9554
+ else_if = {
9555
+ limit = { has_building = naval_battery }
9556
+ add_base_production = 2
9557
+ }
9558
+ else = { add_building = coastal_defence }
9559
+ }
9560
+ }
9561
+
9562
+ upgrade_trade_building = {
9563
+ custom_tooltip = upgrade_trade_building_tt
9564
+ hidden_effect = {
9565
+ if = {
9566
+ limit = { has_building = marketplace }
9567
+ add_building = trade_depot
9568
+ }
9569
+ else_if = {
9570
+ limit = { has_building = trade_depot }
9571
+ add_building = stock_exchange
9572
+ }
9573
+ else_if = {
9574
+ limit = { has_building = stock_exchange }
9575
+ add_base_tax = 1
9576
+ add_base_production = 1
9577
+ }
9578
+ }
9579
+ }
9580
+
9581
+ upgrade_tax_building = {
9582
+ custom_tooltip = upgrade_tax_building_tt
9583
+ hidden_effect = {
9584
+ if = {
9585
+ limit = { has_building = temple }
9586
+ add_building = cathedral
9587
+ }
9588
+ else_if = {
9589
+ limit = { has_building = cathedral }
9590
+ add_base_tax = 2
9591
+ }
9592
+ }
9593
+ }
9594
+
9595
+ upgrade_production_building = {
9596
+ custom_tooltip = upgrade_production_building_tt
9597
+ hidden_effect = {
9598
+ if = {
9599
+ limit = { has_building = workshop }
9600
+ add_building = counting_house
9601
+ }
9602
+ else_if = {
9603
+ limit = { has_building = counting_house }
9604
+ add_base_production = 2
9605
+ }
9606
+ }
9607
+ }
9608
+
9609
+ upgrade_dock_building = {
9610
+ custom_tooltip = upgrade_dock_building_tt
9611
+ hidden_effect = {
9612
+ if = {
9613
+ limit = { has_building = dock }
9614
+ add_building = drydock
9615
+ }
9616
+ else_if = {
9617
+ limit = { has_building = drydock }
9618
+ ROOT = { add_sailors = 0.5 }
9619
+ }
9620
+ }
9621
+ }
9622
+
9623
+ upgrade_shipyard_building = {
9624
+ custom_tooltip = upgrade_shipyard_building_tt
9625
+ hidden_effect = {
9626
+ if = {
9627
+ limit = { has_building = shipyard }
9628
+ add_building = grand_shipyard
9629
+ }
9630
+ else_if = {
9631
+ limit = { has_building = grand_shipyard }
9632
+ ROOT = { add_sailors = 0.5 }
9633
+ }
9634
+ }
9635
+ }
9636
+
9637
+ upgrade_manpower_building = {
9638
+ custom_tooltip = upgrade_manpower_building_tt
9639
+ hidden_effect = {
9640
+ if = {
9641
+ limit = { has_building = barracks }
9642
+ add_building = training_fields
9643
+ }
9644
+ else_if = {
9645
+ limit = { has_building = training_fields }
9646
+ add_base_tax = 1
9647
+ add_base_manpower = 1
9648
+ }
9649
+ }
9650
+ }
9651
+
9652
+ upgrade_forcelimit_building = {
9653
+ custom_tooltip = upgrade_forcelimit_building_tt
9654
+ hidden_effect = {
9655
+ if = {
9656
+ limit = { has_building = regimental_camp }
9657
+ add_building = conscription_center
9658
+ }
9659
+ else_if = {
9660
+ limit = { has_building = conscription_center }
9661
+ add_base_manpower = 2
9662
+ }
9663
+ }
9664
+ }
9665
+
9666
+ upgrade_courthouse_building = {
9667
+ custom_tooltip = upgrade_courthouse_building_tt
9668
+ hidden_effect = {
9669
+ if = {
9670
+ limit = { has_building = courthouse }
9671
+ add_building = town_hall
9672
+ }
9673
+ else_if = {
9674
+ limit = { has_building = town_hall }
9675
+ add_base_tax = 1
9676
+ add_base_production = 1
9677
+ add_base_manpower = 1
9678
+ }
9679
+ }
9680
+ }
9681
+
9682
+ upgrade_fort_building = {
9683
+ custom_tooltip = upgrade_fort_building_tt
9684
+ hidden_effect = {
9685
+ if = {
9686
+ limit = { has_building = fort_15th }
9687
+ add_building = fort_16th
9688
+ }
9689
+ else_if = {
9690
+ limit = { has_building = fort_16th }
9691
+ add_building = fort_17th
9692
+ }
9693
+ else_if = {
9694
+ limit = { has_building = fort_17th }
9695
+ add_building = fort_18th
9696
+ }
9697
+ else_if = {
9698
+ limit = { has_building = fort_18th }
9699
+ add_base_manpower = 3
9700
+ }
9701
+ }
9702
+ }
9703
+
9704
+ upgrade_naval_defense_building = {
9705
+ custom_tooltip = upgrade_naval_defense_building_tt
9706
+ hidden_effect = {
9707
+ if = {
9708
+ limit = { has_building = coastal_defence }
9709
+ add_building = naval_battery
9710
+ }
9711
+ else_if = {
9712
+ limit = { has_building = naval_battery }
9713
+ add_base_production = 2
9714
+ }
9715
+ }
9716
+ }
9717
+
9718
+ remove_temporary_colonist = {
9719
+ hidden_effect = {
9720
+ remove_country_modifier = temporary_colonist
9721
+ }
9722
+ }
9723
+
9724
+ restore_greek_names = {
9725
+ custom_tooltip = reestablishing_themes_names_tooltip
9726
+ hidden_effect = {
9727
+ 149 = { change_province_name = Adrianople rename_capital = Adrianople }
9728
+ 151 = { change_province_name = Constantinople rename_capital = Constantinople }
9729
+ 316 = { change_province_name = Optimatoi rename_capital = Nikomedeia }
9730
+ 317 = { change_province_name = Opsikion rename_capital = Prussa }
9731
+ 318 = { change_province_name = Smyrna rename_capital = Smyrna }
9732
+ 319 = { change_province_name = Mylasa rename_capital = Mougla }
9733
+ 322 = { change_province_name = Kotyaion rename_capital = Kotyaion }
9734
+ 323 = { change_province_name = Ikonion rename_capital = Iconion }
9735
+ 324 = { change_province_name = Laranda rename_capital = Laranda }
9736
+ 325 = { change_province_name = Paphlagonia rename_capital = Timonio }
9737
+ 326 = { change_province_name = Galatia rename_capital = Ancyra }
9738
+ 327 = { change_province_name = Cilicia rename_capital = Atana }
9739
+ 328 = { change_province_name = Sinope rename_capital = Sinop }
9740
+ 329 = { change_province_name = Sebasteia rename_capital = Sebastopolis }
9741
+ 330 = { change_province_name = Trebizond rename_capital = Trapezous }
9742
+ 331 = { change_province_name = Theodosiopolis rename_capital = Theodosiopolis }
9743
+ 1764 = { change_province_name = Mesambria rename_capital = Mesambria }
9744
+ 1846 = { change_province_name = Armeniakon rename_capital = Amasea }
9745
+ 1848 = { change_province_name = Baris rename_capital = Baris }
9746
+ 2296 = { change_province_name = Abydos rename_capital = Pigai }
9747
+ 2297 = { change_province_name = Thrakesion rename_capital = Magnesia }
9748
+ 2298 = { change_province_name = Attalia rename_capital = Attalia }
9749
+ 2299 = { change_province_name = Boukellarion rename_capital = Klaudiopol}
9750
+ 2300 = { change_province_name = Cappadocia rename_capital = Tavium }
9751
+ 2301 = { change_province_name = Charsianon rename_capital = Ceasarea }
9752
+ 2302 = { change_province_name = Seleucia rename_capital = Kermarage }
9753
+ 2304 = { change_province_name = Chaldia rename_capital = Amissos}
9754
+ 2305 = { change_province_name = Acilisene rename_capital = Acilisene }
9755
+ 2750 = { change_province_name = Philippopolis rename_capital = Philippopolis}
9756
+ 4307 = { change_province_name = Colonia rename_capital = Colonia }
9757
+ 4308 = { change_province_name = Laodicea rename_capital = Laodicea }
9758
+ 4309 = { change_province_name = Tralles rename_capital = Tralles }
9759
+ 4310 = { change_province_name = Tephrike rename_capital = Tephrike }
9760
+ 4311 = { change_province_name = Anatolikon rename_capital = Polydorion }
9761
+ 4312 = { change_province_name = Dorylaeum rename_capital = Dorylaeum }
9762
+ 4313 = { change_province_name = Gangra rename_capital = Gangra }
9763
+ 4314 = { change_province_name = Justinianopolis rename_capital = Justinianopolis }
9764
+ 4315 = { change_province_name = Evdoksia rename_capital = Evdoksia }
1260
9765
  }
1261
9766
  }
common/scripted_effects/01_scripted_effects_for_advisors.txt CHANGED
@@ -152,12 +152,12 @@ erase_advisor_flags_effect = { #Goes into the after = {} effect after check_if_n
152
152
  }
153
153
  }
154
154
 
155
- internal_advisor_generation_effect = { #Only used within generate_advisor_of_type_and_semi_random_religion_effect
156
155
  #Requires check_if_non_state_advisor_effect in immediate as that gives the arguments to generate_advisor_of_type_and_semi_random_religion_effect that then passes it on to this.
157
156
  #$advisor_type$ = Advisor type if state religion.
158
157
  #$advisor_type_if_not_state$ = Advisor type if non-state religion.
159
158
  #$skill$ = Skill Level
160
159
  #$discount$ = yes/no for discount
160
+ internal_advisor_generation_effect = { #Only used within generate_advisor_of_type_and_semi_random_religion_effect
161
161
  trigger_switch = {
162
162
  on_trigger = has_country_flag #Flags set by check_if_non_state_advisor_effect
163
163
  state_religion_advisor = {
@@ -327,22 +327,7 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
327
327
  }
328
328
  }
329
329
  else_if = {
330
- limit = {
331
- religion_group = christian
332
- capital_scope = { continent = asia }
333
- }
334
- define_advisor = {
335
- type = $advisor_type_if_not_state$
336
- skill = $skill$
337
- discount = $discount$
338
- religion = sunni
339
- }
340
- }
341
- else_if = {
342
- limit = {
343
- religion_group = christian
344
- capital_scope = { continent = africa }
345
- }
330
+ limit = { religion_group = christian }
346
331
  define_advisor = {
347
332
  type = $advisor_type_if_not_state$
348
333
  skill = $skill$
@@ -353,7 +338,15 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
353
338
  else_if = {
354
339
  limit = {
355
340
  religion_group = muslim
356
- continent = europe
341
+ capital_scope = {
342
+ OR = {
343
+ continent = europe
344
+ region = horn_of_africa_region
345
+ region = maghreb_region
346
+ }
347
+ NOT = { region = caucasia_region }
348
+ NOT = { region = anatolia_region }
349
+ }
357
350
  }
358
351
  define_advisor = {
359
352
  type = $advisor_type_if_not_state$
@@ -365,6 +358,12 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
365
358
  else_if = {
366
359
  limit = {
367
360
  religion_group = muslim
361
+ capital_scope = {
362
+ OR = {
363
+ region = caucasia_region
364
+ region = anatolia_region
365
+ }
366
+ }
368
367
  }
369
368
  define_advisor = {
370
369
  type = $advisor_type_if_not_state$
@@ -374,30 +373,18 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
374
373
  }
375
374
  }
376
375
  else_if = {
377
- limit = {
378
- religion_group = eastern #Most likely won't come here but could.
379
- }
380
- define_advisor = {
381
- type = $advisor_type_if_not_state$
382
- skill = $skill$
383
- discount = $discount$
384
- religion = animism
385
- }
386
- }
387
- else_if = {
388
- limit = {
389
- religion_group = dharmic #Most likely won't come here but could.
390
- }
376
+ limit = { religion_group = muslim }
391
377
  define_advisor = {
392
378
  type = $advisor_type_if_not_state$
393
379
  skill = $skill$
394
380
  discount = $discount$
395
- religion = animism
381
+ religion = zoroastrian
382
+ culture = parsi
396
383
  }
397
384
  }
398
385
  else_if = {
399
386
  limit = {
400
- religion_group = dharmic #Most likely won't come here but could.
387
+ religion_group = eastern #Most likely won't come here but could.
401
388
  }
402
389
  define_advisor = {
403
390
  type = $advisor_type_if_not_state$
@@ -406,32 +393,15 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
406
393
  religion = animism
407
394
  }
408
395
  }
409
- else = {
410
- define_advisor = {
411
- type = $advisor_type_if_not_state$
412
- skill = $skill$
413
- discount = $discount$
414
- }
415
- }
416
- }
417
- heathen_advisor = {
418
- if = {
419
- limit = { religion_group = christian }
420
- define_advisor = {
421
- type = $advisor_type_if_not_state$
422
- skill = $skill$
423
- discount = $discount$
424
- religion = sunni
425
- }
426
- }
427
396
  else_if = {
428
- limit = {
429
- religion_group = muslim
397
+ limit = {
398
+ religion_group = dharmic
430
399
  capital_scope = {
431
400
  OR = {
432
- superregion = near_east_superregion
433
- continent = europe
434
- region = horn_of_africa_region
401
+ region = persia_region
402
+ region = khorasan_region
403
+ region = west_india_region
404
+ region = hindusthan_region
435
405
  }
436
406
  }
437
407
  }
@@ -439,26 +409,19 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
439
409
  type = $advisor_type_if_not_state$
440
410
  skill = $skill$
441
411
  discount = $discount$
442
- religion = catholic
412
+ religion = shiite
413
+ culture = persian
443
414
  }
444
415
  }
445
416
  else_if = {
446
- limit = { religion_group = muslim }
447
- define_advisor = {
448
- type = $advisor_type_if_not_state$
449
- skill = $skill$
450
- discount = $discount$
451
- religion = zoroastrian
417
+ limit = {
418
+ religion_group = dharmic #Most likely won't come here but could.
452
419
  }
453
- }
454
- else_if = {
455
- limit = { religion_group = dharmic }
456
420
  define_advisor = {
457
421
  type = $advisor_type_if_not_state$
458
422
  skill = $skill$
459
423
  discount = $discount$
460
- religion = shiite
461
- culture = persian
424
+ religion = animism
462
425
  }
463
426
  }
464
427
  else = {
@@ -513,6 +476,7 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
513
476
  type = $advisor_type_if_not_state$
514
477
  skill = $skill$
515
478
  religion = zoroastrian
479
+ culture = parsi
516
480
  discount = $discount$
517
481
  }
518
482
  }
@@ -808,7 +772,6 @@ internal_advisor_generation_effect = { #Only used within generate_advisor_of_typ
808
772
  }
809
773
  }
810
774
 
811
- generate_advisor_of_type_and_semi_random_religion_effect = {
812
775
  #Actual work is done by internal_advisor_generation_effect above but it goes through this first.
813
776
  #Requires check_if_non_state_advisor_effect in immediate.
814
777
  #$advisor_type$ = Advisor type if state religion.
@@ -816,6 +779,7 @@ generate_advisor_of_type_and_semi_random_religion_effect = {
816
779
  #$scaled_skill$ = yes/no
817
780
  #$skill$ = Skill Level
818
781
  #$discount$ = yes/no for discount
782
+ generate_advisor_of_type_and_semi_random_religion_effect = {
819
783
 
820
784
  [[scaled_skill]
821
785
  if = {
@@ -897,6 +861,83 @@ generate_scaled_advisor_of_type_and_religion_effect = {
897
861
  }
898
862
  }
899
863
 
864
+ #Use this one if you just want a scaling advisor with cost multiplier
865
+ generate_scaled_advisor_of_type_and_cost_effect = {
866
+ if = {
867
+ limit = {
868
+ NOT = { monthly_income = 15 }
869
+ }
870
+ define_advisor = {
871
+ type = $type$
872
+ skill = 1
873
+ cost_multiplier = $cost_multiplier$
874
+ }
875
+ }
876
+ else_if = {
877
+ limit = {
878
+ NOT = { monthly_income = 25 }
879
+ }
880
+ define_advisor = {
881
+ type = $type$
882
+ skill = 2
883
+ cost_multiplier = $cost_multiplier$
884
+ }
885
+ }
886
+ else = {
887
+ define_advisor = {
888
+ type = $type$
889
+ skill = 3
890
+ cost_multiplier = $cost_multiplier$
891
+ }
892
+ }
893
+ }
894
+
895
+ #Use this one if you want to give as much details as possible for your advisor
896
+ generate_very_specific_scaling_advisor_effect = {
897
+ if = {
898
+ limit = {
899
+ NOT = { monthly_income = 15 }
900
+ }
901
+ define_advisor = {
902
+ type = $type$
903
+ skill = 1
904
+ name = $name$
905
+ location = $location$
906
+ cost_multiplier = $cost_multiplier$
907
+ female = $female$
908
+ culture = $culture$
909
+ religion = $religion$
910
+ }
911
+ }
912
+ else_if = {
913
+ limit = {
914
+ NOT = { monthly_income = 25 }
915
+ }
916
+ define_advisor = {
917
+ type = $type$
918
+ skill = 2
919
+ name = $name$
920
+ location = $location$
921
+ cost_multiplier = $cost_multiplier$
922
+ female = $female$
923
+ culture = $culture$
924
+ religion = $religion$
925
+ }
926
+ }
927
+ else = {
928
+ define_advisor = {
929
+ type = $type$
930
+ skill = 3
931
+ name = $name$
932
+ location = $location$
933
+ cost_multiplier = $cost_multiplier$
934
+ female = $female$
935
+ culture = $culture$
936
+ religion = $religion$
937
+ }
938
+ }
939
+ }
940
+
900
941
  pick_type_of_military_advisor = {
901
942
  random_list = {
902
943
  1 = { set_country_flag = generate_army_reformer }
@@ -1324,9 +1365,224 @@ kill_advisor_by_category_effect = {
1324
1365
  ]
1325
1366
  }
1326
1367
 
1368
+ generate_estate_advisor = {
1369
+ if = {
1370
+ limit = {
1371
+ monthly_income = 25
1372
+ estate_influence = {
1373
+ estate = $estate$
1374
+ influence = 80
1375
+ }
1376
+ }
1377
+ define_advisor = {
1378
+ type = $type$
1379
+ skill = 3
1380
+ cost_multiplier = 0.5
1381
+ }
1382
+ }
1383
+ else_if = {
1384
+ limit = {
1385
+ monthly_income = 25
1386
+ estate_influence = {
1387
+ estate = $estate$
1388
+ influence = 60
1389
+ }
1390
+ NOT = {
1391
+ estate_influence = {
1392
+ estate = $estate$
1393
+ influence = 80
1394
+ }
1395
+ }
1396
+ }
1397
+ define_advisor = {
1398
+ type = $type$
1399
+ skill = 3
1400
+ cost_multiplier = 0.75
1401
+ }
1402
+ }
1403
+ else_if = {
1404
+ limit = {
1405
+ monthly_income = 25
1406
+ NOT = {
1407
+ estate_influence = {
1408
+ estate = $estate$
1409
+ influence = 60
1410
+ }
1411
+ }
1412
+ }
1413
+ define_advisor = {
1414
+ type = $type$
1415
+ skill = 3
1416
+ }
1417
+ }
1418
+ else_if = {
1419
+ limit = {
1420
+ NOT = { monthly_income = 25 }
1421
+ estate_influence = {
1422
+ estate = $estate$
1423
+ influence = 80
1424
+ }
1425
+ }
1426
+ define_advisor = {
1427
+ type = $type$
1428
+ skill = 2
1429
+ cost_multiplier = 0.5
1430
+ }
1431
+ }
1432
+ else_if = {
1433
+ limit = {
1434
+ NOT = { monthly_income = 25 }
1435
+ estate_influence = {
1436
+ estate = $estate$
1437
+ influence = 60
1438
+ }
1439
+ NOT = {
1440
+ estate_influence = {
1441
+ estate = $estate$
1442
+ influence = 80
1443
+ }
1444
+ }
1445
+ }
1446
+ define_advisor = {
1447
+ type = $type$
1448
+ skill = 2
1449
+ cost_multiplier = 0.75
1450
+ }
1451
+ }
1452
+ else_if = {
1453
+ limit = {
1454
+ NOT = { monthly_income = 25 }
1455
+ NOT = {
1456
+ estate_influence = {
1457
+ estate = $estate$
1458
+ influence = 60
1459
+ }
1460
+ }
1461
+ }
1462
+ define_advisor = {
1463
+ type = $type$
1464
+ skill = 2
1465
+ }
1466
+ }
1467
+ }
1327
1468
 
1469
+ generate_advisor = {
1470
+ if = {
1471
+ limit = {
1472
+ has_country_flag = cheaper_selected_advisor
1473
+ }
1474
+ if = {
1475
+ limit = { NOT = { monthly_income = 5 } }
1476
+ define_advisor = {
1477
+ type = $type$
1478
+ religion = ROOT
1479
+ culture = ROOT
1480
+ skill = 1
1481
+ discount = yes
1482
+ }
1483
+ }
1484
+ else_if = {
1485
+ limit = { NOT = { monthly_income = 15 } }
1486
+ define_advisor = {
1487
+ type = $type$
1488
+ religion = ROOT
1489
+ culture = ROOT
1490
+ skill = 2
1491
+ discount = yes
1492
+ }
1493
+ }
1494
+ else = {
1495
+ define_advisor = {
1496
+ type = $type$
1497
+ religion = ROOT
1498
+ culture = ROOT
1499
+ skill = 3
1500
+ discount = yes
1501
+ }
1502
+ }
1503
+ }
1504
+ else = {
1505
+ if = {
1506
+ limit = {
1507
+ NOT = { monthly_income = 15 }
1508
+ }
1509
+ define_advisor = {
1510
+ type = $type$
1511
+ religion = ROOT
1512
+ culture = ROOT
1513
+ skill = 1
1514
+ }
1515
+ }
1516
+ else_if = {
1517
+ limit = {
1518
+ NOT = { monthly_income = 25 }
1519
+ }
1520
+ define_advisor = {
1521
+ type = $type$
1522
+ religion = ROOT
1523
+ culture = ROOT
1524
+ skill = 2
1525
+ }
1526
+ }
1527
+ else = {
1528
+ define_advisor = {
1529
+ type = $type$
1530
+ religion = ROOT
1531
+ culture = ROOT
1532
+ skill = 3
1533
+ }
1534
+ }
1535
+ }
1536
+ hidden_effect = {
1537
+ clr_country_flag = cheaper_selected_advisor
1538
+ }
1539
+ }
1328
1540
 
1329
1541
 
1542
+ define_and_hire_grand_vizier = {
1543
+ hire_advisor = {
1544
+ type = $type$
1545
+ [[skill]skill = $skill$]
1546
+ [[culture]culture = $culture$]
1547
+ [[religion]religion = $religion$]
1548
+ [[female]female = $female$]
1549
+ [[age]age = $age$]
1550
+ [[max_age]max_age = $max_age$]
1551
+ [[min_age]min_age = $min_age$]
1552
+ [[min_age]min_age = $min_age$]
1553
+ cost_multiplier = 2.0
1554
+ [[location]location = $location$]
1555
+ }
1556
+ add_country_modifier = {
1557
+ name = grand_vizier_$type$
1558
+ duration = -1
1559
+ desc = UNTIL_ADVISOR_REMOVAL
1560
+ }
1561
+ }
1330
1562
 
1331
-
1332
-
1563
+ remove_grand_vizier_modifiers = {
1564
+ trigger_switch = {
1565
+ on_trigger = has_country_modifier
1566
+ grand_vizier_philosopher = { if = { limit = { NOT = { philosopher = 1} } remove_country_modifier = grand_vizier_philosopher } }
1567
+ grand_vizier_natural_scientist = { if = { limit = { NOT = { natural_scientist = 1} } remove_country_modifier = grand_vizier_natural_scientist } }
1568
+ grand_vizier_artist = { if = { limit = { NOT = { artist = 1} } remove_country_modifier = grand_vizier_artist } }
1569
+ grand_vizier_treasurer = { if = { limit = { NOT = { treasurer = 1} } remove_country_modifier = grand_vizier_treasurer } }
1570
+ grand_vizier_theologian = { if = { limit = { NOT = { theologian = 1} } remove_country_modifier = grand_vizier_theologian } }
1571
+ grand_vizier_master_of_mint = { if = { limit = { NOT = { master_of_mint = 1} } remove_country_modifier = grand_vizier_master_of_mint } }
1572
+ grand_vizier_inquisitor = { if = { limit = { NOT = { inquisitor = 1} } remove_country_modifier = grand_vizier_inquisitor } }
1573
+ grand_vizier_statesman = { if = { limit = { NOT = { statesman = 1} } remove_country_modifier = grand_vizier_statesman } }
1574
+ grand_vizier_naval_reformer = { if = { limit = { NOT = { naval_reformer = 1} } remove_country_modifier = grand_vizier_naval_reformer } }
1575
+ grand_vizier_trader = { if = { limit = { NOT = { trader = 1} } remove_country_modifier = grand_vizier_trader } }
1576
+ grand_vizier_spymaster = { if = { limit = { NOT = { spymaster = 1} } remove_country_modifier = grand_vizier_spymaster } }
1577
+ grand_vizier_colonial_governor = { if = { limit = { NOT = { colonial_governor = 1} } remove_country_modifier = grand_vizier_colonial_governor } }
1578
+ grand_vizier_diplomat = { if = { limit = { NOT = { diplomat = 1} } remove_country_modifier = grand_vizier_diplomat } }
1579
+ grand_vizier_navigator = { if = { limit = { NOT = { navigator = 1} } remove_country_modifier = grand_vizier_navigator } }
1580
+ grand_vizier_army_reformer = { if = { limit = { NOT = { army_reformer = 1} } remove_country_modifier = grand_vizier_army_reformer } }
1581
+ grand_vizier_army_organiser = { if = { limit = { NOT = { army_organiser = 1} } remove_country_modifier = grand_vizier_army_organiser } }
1582
+ grand_vizier_commandant = { if = { limit = { NOT = { commandant = 1} } remove_country_modifier = grand_vizier_commandant } }
1583
+ grand_vizier_quartermaster = { if = { limit = { NOT = { quartermaster = 1} } remove_country_modifier = grand_vizier_quartermaster } }
1584
+ grand_vizier_recruitmaster = { if = { limit = { NOT = { recruitmaster = 1} } remove_country_modifier = grand_vizier_recruitmaster } }
1585
+ grand_vizier_fortification_expert = { if = { limit = { NOT = { fortification_expert = 1} } remove_country_modifier = grand_vizier_fortification_expert } }
1586
+ grand_vizier_grand_captain = { if = { limit = { NOT = { grand_captain = 1} } remove_country_modifier = grand_vizier_grand_captain } }
1587
+ }
1588
+ }
common/scripted_effects/01_scripted_effects_for_diplomacy.txt CHANGED
@@ -2,11 +2,114 @@
2
2
 
3
3
  add_mutual_opinion_modifier_effect = {
4
4
  add_opinion = {
5
- who = $scope_country$
6
- modifier = $opinion_modifier$
5
+ who = $target$
6
+ modifier = $modifier$
7
7
  }
8
8
  reverse_add_opinion = {
9
- who = $scope_country$
10
- modifier = $opinion_modifier$
9
+ who = $target$
10
+ modifier = $modifier$
11
+ }
12
+ }
13
+
14
+ eyalet_effect = {
15
+ override_country_name = $tag$
16
+ set_country_flag = has_eyalet_country_name
17
+ set_country_flag = has_eyalet_color
18
+ set_country_flag = has_overriden_name_flag
19
+ set_country_flag = has_overriden_color_flag
20
+ hidden_effect = {
21
+ if = {
22
+ limit = { religion = noreligion }
23
+ change_religion = ROOT
24
+ }
25
+ if = {
26
+ limit = { primary_culture = noculture }
27
+ change_primary_culture = ROOT
28
+ }
29
+ }
30
+ if = {
31
+ limit = {
32
+ ROOT = { tag = TUR }
33
+ }
34
+ change_country_color = { color = { 169 220 165 } }
35
+ }
36
+ else_if = {
37
+ limit = {
38
+ ROOT = { tag = RUM }
39
+ }
40
+ change_country_color = { color = { 75 190 228 } }
41
+ }
42
+ else = {
43
+ change_country_color = { country = ROOT }
44
+ }
45
+ set_country_flag = is_$tag$_flag
46
+ }
47
+
48
+ eyalet_name_effect = {
49
+ set_country_flag = has_eyalet_country_name
50
+ set_country_flag = has_overriden_name_flag
51
+ override_country_name = $tag$
52
+ }
53
+
54
+ eyalet_dynamic_name_change_effect = {
55
+ if = { limit = { tag = HUN } eyalet_name_effect = { tag = EY0 } }
56
+ if = { limit = { tag = SLO } eyalet_name_effect = { tag = EY1 } }
57
+ if = { limit = { tag = TRA } eyalet_name_effect = { tag = EY2 } }
58
+ if = { limit = { tag = HAB } eyalet_name_effect = { tag = EY3 } }
59
+ if = { limit = { tag = MLO } eyalet_name_effect = { tag = EY4 } }
60
+ if = { limit = { tag = SIC } eyalet_name_effect = { tag = EY5 } }
61
+ if = { limit = { tag = TUS } eyalet_name_effect = { tag = EY6 } }
62
+ if = { limit = { tag = EGY } eyalet_name_effect = { tag = EY7 } }
63
+ if = { limit = { tag = TRP } eyalet_name_effect = { tag = EY8 } }
64
+ if = { limit = { tag = TUN } eyalet_name_effect = { tag = EY9 } }
65
+ if = { limit = { tag = ALG } eyalet_name_effect = { tag = E10 } }
66
+ if = { limit = { tag = GRA } eyalet_name_effect = { tag = E11 } }
67
+ if = { limit = { tag = PER } eyalet_name_effect = { tag = E12 } }
68
+ if = { limit = { tag = ADA } eyalet_name_effect = { tag = E13 } }
69
+ if = { limit = { tag = VEN } eyalet_name_effect = { tag = E14 } }
70
+ if = { limit = { tag = GEN } eyalet_name_effect = { tag = E15 } }
71
+ if = { limit = { tag = MOR } eyalet_name_effect = { tag = E16 } }
72
+ if = { limit = { tag = SAV } eyalet_name_effect = { tag = E17 } }
73
+ if = { limit = { tag = YEM } eyalet_name_effect = { tag = E17 } }
74
+ }
75
+
76
+ convert_special_subject_to_vassal = {
77
+ if = {
78
+ limit = {
79
+ $subject$ = { is_subject_of = $overlord$ }
80
+ OR = {
81
+ AND = {
82
+ $overlord$ = { NOT = { has_government_attribute = has_eyalets } }
83
+ $subject$ = {
84
+ OR = {
85
+ is_subject_of_type = eyalet
86
+ is_subject_of_type = core_eyalet
87
+ }
88
+ }
89
+ }
90
+ AND = {
91
+ $overlord$ = { NOT = { has_government_attribute = enables_pronoias } }
92
+ $subject$ = {
93
+ OR = {
94
+ is_subject_of_type = pronoia_subject_type
95
+ is_subject_of_type = hereditary_pronoia_subject_type
96
+ }
97
+ }
98
+ }
99
+ AND = {
100
+ $overlord$ = { NOT = { has_government_mechanic = persian_influence_mechanic } }
101
+ $subject$ = {
102
+ is_subject_of_type = cultural_sphere_of_influence_subject
103
+ }
104
+ }
105
+ }
106
+ }
107
+ $overlord$ = {
108
+ create_subject = {
109
+ subject_type = vassal
110
+ subject = $subject$
111
+ keep_liberty_desire = yes
112
+ }
113
+ }
11
114
  }
12
115
  }
common/scripted_effects/01_scripted_effects_for_estates.txt CHANGED
@@ -125,6 +125,50 @@ each_estate_effect = {
125
125
  $jains_effect$
126
126
  ]
127
127
  }
128
+ if = {
129
+ limit = {
130
+ has_estate = estate_janissaries
131
+ }
132
+ [[effect]
133
+ $effect$
134
+ ]
135
+ [[janissaries_effect]
136
+ $janissaries_effect$
137
+ ]
138
+ }
139
+ if = {
140
+ limit = {
141
+ has_estate = estate_eunuchs
142
+ }
143
+ [[effect]
144
+ $effect$
145
+ ]
146
+ [[eunuchs_effect]
147
+ $eunuchs_effect$
148
+ ]
149
+ }
150
+ if = {
151
+ limit = {
152
+ has_estate = estate_qizilbash
153
+ }
154
+ [[effect]
155
+ $effect$
156
+ ]
157
+ [[eunuchs_effect]
158
+ $qizilbash_effect$
159
+ ]
160
+ }
161
+ if = {
162
+ limit = {
163
+ has_estate = estate_ghulams
164
+ }
165
+ [[effect]
166
+ $effect$
167
+ ]
168
+ [[eunuchs_effect]
169
+ $ghulams_effect$
170
+ ]
171
+ }
128
172
  }
129
173
 
130
174
  #Clergy
@@ -413,24 +457,127 @@ reduce_estate_rajput_loyalty_effect = {
413
457
  on_religion_change_estate_privileges_effect = {
414
458
  if = {
415
459
  limit = {
416
- any_country = {
417
- root = {
418
- force_converted_by = prev
419
- religion = prev
460
+ OR = {
461
+ AND = {
462
+ NOT = { has_estate_privilege = estate_dhimmi_guaranteed_autonomy }
463
+ NOT = { has_estate_privilege = estate_dhimmi_guarantee_of_traditions }
464
+ }
465
+ NOT = { religion_group = muslim }
466
+ }
467
+ any_owned_province = { has_province_modifier = estate_dhimmi_guaranteed_autonomy_mod }
468
+ }
469
+ every_owned_province = {
470
+ limit = {
471
+ has_province_modifier = estate_dhimmi_guaranteed_autonomy_mod
472
+ }
473
+ remove_province_modifier = estate_dhimmi_guaranteed_autonomy_mod
474
+ }
475
+ }
476
+ if = {
477
+ limit = {
478
+ OR = {
479
+ has_estate_privilege = estate_church_one_faith_one_culture
480
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
481
+ }
482
+ }
483
+ every_owned_province = {
484
+ limit = {
485
+ has_province_modifier = estate_church_united_faith_and_culture
486
+ NOT = { religion = ROOT }
487
+ }
488
+ remove_province_modifier = estate_church_united_faith_and_culture
489
+ }
490
+ every_owned_province = {
491
+ limit = {
492
+ NOT = { has_province_modifier = estate_church_united_faith_and_culture }
493
+ religion = ROOT
494
+ OR = {
495
+ culture_group = ROOT
496
+ has_owner_accepted_culture = yes
420
497
  }
421
498
  }
499
+ add_province_modifier = {
500
+ name = estate_church_united_faith_and_culture
501
+ duration = -1
502
+ }
503
+ }
504
+ }
505
+ if = {
506
+ limit = {
507
+ owner = {
508
+ has_estate_privilege = estate_janissary_strict_devshirme_recruitment
509
+ }
510
+ }
511
+ if = {
512
+ limit = {
513
+ owner = { NOT = { religion_group = ROOT } }
514
+ }
515
+ add_province_modifier = {
516
+ name = estate_janissary_strict_devshirme_recruitment_mod
517
+ duration = -1
518
+ }
519
+ }
520
+ }
521
+ if = {
522
+ limit = {
523
+ owner = {
524
+ has_estate_privilege = estate_church_muslim_integration
525
+ }
526
+ }
527
+ if = {
528
+ limit = { religion_group = muslim }
529
+ add_province_modifier = {
530
+ name = estate_church_muslim_integration_mod
531
+ duration = -1
532
+ }
533
+ }
534
+ else = {
535
+ remove_province_modifier = estate_church_muslim_integration_mod
536
+ }
537
+ }
538
+ }
539
+
540
+ on_secondary_religion_change_estate_privileges_effect = {
541
+ #For whatever unholy reason, the trigger owner = { secondary_religion = PREV } for every owned province does not work in this scripted effect
542
+ #Because of that this event workaround had to be made in order to update the religious cultures
543
+ country_event = {
544
+ id = passive_effects_events.10
545
+ }
546
+ }
547
+
548
+ on_harmonized_religion_estate_privileges_effect = {
549
+ if = {
550
+ limit = {
551
+ OR = {
552
+ has_estate_privilege = estate_church_one_faith_one_culture
553
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
554
+ }
422
555
  }
423
- random_country = {
556
+ every_owned_province = {
424
557
  limit = {
425
- root = {
426
- force_converted_by = prev
427
- religion = prev
558
+ has_province_modifier = estate_church_united_faith_and_culture
559
+ NOT = { religion = ROOT }
560
+ owner = { NOT = { has_harmonized_with = PREV } }
561
+ }
562
+ remove_province_modifier = estate_church_united_faith_and_culture
563
+ }
564
+ every_owned_province = {
565
+ limit = {
566
+ NOT = { has_province_modifier = estate_church_united_faith_and_culture }
567
+ owner = {
568
+ OR = {
569
+ religion = PREV
570
+ has_harmonized_with = PREV
571
+ }
572
+ }
573
+ OR = {
574
+ culture_group = ROOT
575
+ has_owner_accepted_culture = yes
428
576
  }
429
577
  }
430
- add_country_modifier = {
431
- name = recently_force_converted_protagonist_timer
432
- duration = 5475
433
- hidden = yes
578
+ add_province_modifier = {
579
+ name = estate_church_united_faith_and_culture
580
+ duration = -1
434
581
  }
435
582
  }
436
583
  }
@@ -503,7 +650,7 @@ on_province_religion_converted_estate_privileges_effect = {
503
650
  if = {
504
651
  limit = {
505
652
  owner = {
506
- has_estate_privilege = estate_dhimmi_guaranteed_autonomy
653
+ has_country_flag = dhimmi_tolerates_wrong_religion
507
654
  }
508
655
  }
509
656
  if = {
@@ -524,6 +671,75 @@ on_province_religion_converted_estate_privileges_effect = {
524
671
  remove_province_modifier = estate_dhimmi_guaranteed_autonomy_mod
525
672
  }
526
673
  }
674
+ if = {
675
+ limit = {
676
+ owner = {
677
+ has_country_flag = burghers_tolerates_orthodoxy
678
+ }
679
+ }
680
+ if = {
681
+ limit = {
682
+ OR = {
683
+ religion = orthodox
684
+ religion = coptic
685
+ }
686
+ NOT = { has_province_modifier = estate_burghers_guaranteed_autonomy_mod }
687
+ }
688
+ add_province_modifier = {
689
+ name = estate_burghers_guaranteed_autonomy_mod
690
+ duration = -1
691
+ }
692
+ }
693
+ else_if = {
694
+ limit = {
695
+ NOT = { religion = orthodox }
696
+ NOT = { religion = coptic }
697
+ has_province_modifier = estate_burghers_guaranteed_autonomy_mod
698
+ }
699
+ remove_province_modifier = estate_burghers_guaranteed_autonomy_mod
700
+ }
701
+ }
702
+ if = {
703
+ limit = {
704
+ owner = {
705
+ has_country_flag = gets_manpower_from_tax_buildings
706
+ }
707
+ }
708
+ if = {
709
+ limit = {
710
+ has_owner_religion = yes
711
+ has_building = cathedral
712
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_cathedral }
713
+ }
714
+ add_province_modifier = {
715
+ name = estate_nobles_religious_conscription_cathedral
716
+ duration = -1
717
+ }
718
+ remove_province_modifier = estate_nobles_religious_conscription_temple
719
+ }
720
+ else_if = {
721
+ limit = {
722
+ has_owner_religion = yes
723
+ has_building = temple
724
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_temple }
725
+ }
726
+ add_province_modifier = {
727
+ name = estate_nobles_religious_conscription_temple
728
+ duration = -1
729
+ }
730
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
731
+ }
732
+ else_if = {
733
+ limit = {
734
+ OR = {
735
+ has_province_modifier = estate_nobles_religious_conscription_temple
736
+ has_province_modifier = estate_nobles_religious_conscription_cathedral
737
+ }
738
+ }
739
+ remove_province_modifier = estate_nobles_religious_conscription_temple
740
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
741
+ }
742
+ }
527
743
  if = {
528
744
  limit = {
529
745
  owner = {
@@ -532,7 +748,7 @@ on_province_religion_converted_estate_privileges_effect = {
532
748
  }
533
749
  if = {
534
750
  limit = {
535
- NOT = { religion_group = muslim }
751
+ religion_group = dharmic
536
752
  NOT = { has_province_modifier = estate_brahmins_guaranteed_autonomy_mod }
537
753
  }
538
754
  add_province_modifier = {
@@ -542,12 +758,56 @@ on_province_religion_converted_estate_privileges_effect = {
542
758
  }
543
759
  else_if = {
544
760
  limit = {
545
- religion_group = muslim
761
+ NOT = { religion_group = dharmic }
762
+ has_province_modifier = estate_brahmins_guaranteed_autonomy_mod
763
+ }
764
+ remove_province_modifier = estate_brahmins_guaranteed_autonomy_mod
765
+ }
766
+ }
767
+ if = {
768
+ limit = {
769
+ owner = {
770
+ has_estate_privilege = estate_church_brahmins_at_court
771
+ }
772
+ }
773
+ if = {
774
+ limit = {
775
+ religion_group = dharmic
776
+ NOT = { has_province_modifier = estate_brahmins_guaranteed_autonomy_mod }
777
+ }
778
+ add_province_modifier = {
779
+ name = estate_brahmins_guaranteed_autonomy_mod
780
+ duration = -1
781
+ }
782
+ }
783
+ else_if = {
784
+ limit = {
785
+ NOT = { religion_group = dharmic }
546
786
  has_province_modifier = estate_brahmins_guaranteed_autonomy_mod
547
787
  }
548
788
  remove_province_modifier = estate_brahmins_guaranteed_autonomy_mod
549
789
  }
550
790
  }
791
+ if = {
792
+ limit = {
793
+ owner = {
794
+ has_estate_privilege = estate_church_lao_animism
795
+ }
796
+ }
797
+ if = {
798
+ limit = {
799
+ religion = animism
800
+ NOT = { has_province_modifier = estate_church_lao_animism_mod }
801
+ }
802
+ }
803
+ else_if = {
804
+ limit = {
805
+ NOT = { religion = animism }
806
+ has_province_modifier = estate_church_lao_animism_mod
807
+ }
808
+ remove_province_modifier = estate_church_lao_animism_mod
809
+ }
810
+ }
551
811
  if = {
552
812
  limit = {
553
813
  owner = {
@@ -570,92 +830,431 @@ on_province_religion_converted_estate_privileges_effect = {
570
830
  remove_province_modifier = estate_maratha_levies_for_muslims_mod
571
831
  }
572
832
  }
573
- }
574
-
575
- on_province_owner_change_estate_privileges_effect = {
576
833
  if = {
577
- limit = { has_terrain = steppe }
834
+ limit = {
835
+ owner = {
836
+ OR = {
837
+ has_estate_privilege = estate_church_one_faith_one_culture
838
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
839
+ }
840
+ }
841
+ }
578
842
  if = {
579
843
  limit = {
580
844
  owner = {
581
- has_estate_privilege = estate_cossacks_prime_herding_rights
845
+ OR = {
846
+ religion = ROOT
847
+ has_harmonized_with = ROOT
848
+ secondary_religion = ROOT
849
+ }
850
+ OR = {
851
+ culture_group = ROOT
852
+ accepted_culture = ROOT
853
+ }
582
854
  }
583
- NOT = { has_province_modifier = estate_cossacks_prime_herding_rights_mod }
584
855
  }
585
856
  add_province_modifier = {
586
- name = estate_cossacks_prime_herding_rights_mod
857
+ name = estate_church_united_faith_and_culture
587
858
  duration = -1
588
859
  }
589
860
  }
590
861
  if = {
591
862
  limit = {
592
863
  owner = {
593
- has_estate_privilege = estate_cossacks_exploration_expedition
864
+ NOT = { culture_group = ROOT }
865
+ NOT = { accepted_culture = ROOT }
594
866
  }
595
- NOT = { has_province_modifier = estate_cossacks_exploration_expedition_mod }
596
867
  }
597
868
  add_province_modifier = {
598
- name = estate_cossacks_exploration_expedition_mod
869
+ name = estate_church_false_culture
599
870
  duration = -1
600
871
  }
601
872
  }
602
873
  }
603
- else_if = {
874
+ if = {
604
875
  limit = {
605
- has_terrain = steppe
606
- has_province_modifier = estate_cossacks_prime_herding_rights_mod
607
876
  owner = {
608
- NOT = { has_estate_privilege = estate_cossacks_prime_herding_rights }
877
+ has_estate_privilege = estate_dhimmi_millet_system
609
878
  }
610
879
  }
611
- remove_province_modifier = estate_cossacks_prime_herding_rights_mod
612
- }
613
- if = {
614
- limit = {
615
- owner = {
616
- has_estate_privilege = estate_dhimmi_lighter_dhimmi_taxes
880
+ if = {
881
+ limit = {
882
+ OR = {
883
+ religion_group = christian
884
+ religion_group = jewish_group
885
+ }
886
+ }
887
+ add_province_modifier = {
888
+ name = estate_dhimmi_millet_system_mod
889
+ duration = -1
617
890
  }
618
- NOT = { religion_group = muslim }
619
891
  }
620
- add_province_modifier = {
621
- name = estate_dhimmi_lighter_dhimmi_taxes_privilege_mod
622
- duration = -1
892
+ else = {
893
+ if = {
894
+ limit = { has_province_modifier = estate_dhimmi_millet_system_mod }
895
+ remove_province_modifier = estate_dhimmi_millet_system_mod
896
+ }
623
897
  }
624
898
  }
625
899
  if = {
626
900
  limit = {
627
901
  owner = {
628
- has_estate_privilege = estate_dhimmi_manpower
902
+ has_estate_privilege = estate_church_development_of_temples
629
903
  }
630
- NOT = { religion_group = muslim }
631
904
  }
632
- add_province_modifier = {
633
- name = estate_dhimmi_manpower_mod
634
- duration = -1
905
+ if = {
906
+ limit = {
907
+ has_tax_building_trigger = yes
908
+ OR = {
909
+ has_owner_religion = yes
910
+ has_owner_harmonized_religion = yes
911
+ has_owner_secondary_religion = yes
912
+ }
913
+ }
914
+ add_province_modifier = {
915
+ name = estate_church_development_of_temples_mod
916
+ duration = -1
917
+ }
918
+ }
919
+ else = {
920
+ if = {
921
+ limit = { has_province_modifier = estate_church_development_of_temples_mod }
922
+ remove_province_modifier = estate_church_development_of_temples_mod
923
+ }
635
924
  }
636
925
  }
637
926
  if = {
638
927
  limit = {
639
928
  owner = {
640
- has_estate_privilege = estate_dhimmi_guaranteed_autonomy
929
+ has_estate_privilege = estate_brahmins_development_of_temples
641
930
  }
642
- NOT = { religion_group = muslim }
643
931
  }
644
- add_province_modifier = {
645
- name = estate_dhimmi_guaranteed_autonomy_mod
646
- duration = -1
932
+ if = {
933
+ limit = {
934
+ religion_group = dharmic
935
+ has_tax_building_trigger = yes
936
+ }
937
+ add_province_modifier = {
938
+ name = estate_brahmins_development_of_temples_mod
939
+ duration = -1
940
+ }
941
+ }
942
+ else = {
943
+ if = {
944
+ limit = { has_province_modifier = estate_brahmins_development_of_temples_mod }
945
+ remove_province_modifier = estate_brahmins_development_of_temples_mod
946
+ }
647
947
  }
648
948
  }
649
949
  if = {
650
950
  limit = {
651
951
  owner = {
652
- has_estate_privilege = estate_brahmins_guaranteed_autonomy
952
+ has_estate_privilege = estate_dhimmi_development_of_communities
653
953
  }
654
- NOT = { religion_group = muslim }
655
- }
656
- add_province_modifier = {
657
- name = estate_brahmins_guaranteed_autonomy_mod
658
- duration = -1
954
+ has_tax_building_trigger = yes
955
+ }
956
+ if = {
957
+ limit = {
958
+ NOT = { religion_group = ROOT }
959
+ }
960
+ add_province_modifier = {
961
+ name = estate_nomadic_tribes_freedom_of_the_steppes_mod
962
+ duration = -1
963
+ }
964
+ }
965
+ else = {
966
+ if = {
967
+ limit = { has_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod }
968
+ remove_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod
969
+ }
970
+ }
971
+ }
972
+ }
973
+
974
+ on_province_culture_converted_estate_privilges_effect = {
975
+ if = {
976
+ limit = {
977
+ owner = {
978
+ OR = {
979
+ has_estate_privilege = estate_church_one_faith_one_culture
980
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
981
+ }
982
+ }
983
+ }
984
+ if = {
985
+ limit = {
986
+ owner = {
987
+ OR = {
988
+ accepted_culture = ROOT
989
+ culture_group = ROOT
990
+ }
991
+ OR = {
992
+ religion = ROOT
993
+ has_harmonized_with = ROOT
994
+ secondary_religion = ROOT
995
+ }
996
+ }
997
+ }
998
+ if = {
999
+ limit = {
1000
+ has_province_modifier = estate_church_false_culture
1001
+ }
1002
+ remove_province_modifier = estate_church_false_culture
1003
+ }
1004
+ add_province_modifier = {
1005
+ name = estate_church_united_faith_and_culture
1006
+ duration = -1
1007
+ }
1008
+ }
1009
+ if = {
1010
+ limit = {
1011
+ owner = {
1012
+ NOT = { culture_group = ROOT }
1013
+ NOT = { accepted_culture = ROOT }
1014
+ }
1015
+ }
1016
+ if = {
1017
+ limit = {
1018
+ has_province_modifier = estate_church_united_faith_and_culture
1019
+ }
1020
+ remove_province_modifier = estate_church_united_faith_and_culture
1021
+ }
1022
+ add_province_modifier = {
1023
+ name = estate_church_false_culture
1024
+ duration = -1
1025
+ }
1026
+ }
1027
+ }
1028
+ if = {
1029
+ limit = {
1030
+ owner = {
1031
+ has_estate_privilege = estate_maratha_development_of_marathi_lands
1032
+ }
1033
+ }
1034
+ if = {
1035
+ limit = {
1036
+ OR = {
1037
+ culture_group = western_aryan
1038
+ culture_group = dravidian
1039
+ culture = sinhala
1040
+ }
1041
+ NOT = { culture = rajput }
1042
+ NOT = { culture = malvi }
1043
+ }
1044
+ add_province_modifier = {
1045
+ name = estate_maratha_development_of_marathi_lands_mod
1046
+ duration = -1
1047
+ }
1048
+ }
1049
+ else = {
1050
+ if = {
1051
+ limit = { has_province_modifier = estate_maratha_development_of_marathi_lands_mod }
1052
+ remove_province_modifier = estate_maratha_development_of_marathi_lands_mod
1053
+ }
1054
+ }
1055
+ }
1056
+ if = {
1057
+ limit = {
1058
+ owner = {
1059
+ has_estate_privilege = estate_rajput_development_of_rajput_lands
1060
+ }
1061
+ }
1062
+ if = {
1063
+ limit = {
1064
+ OR = {
1065
+ culture = rajput
1066
+ culture = malvi
1067
+ AND = {
1068
+ culture_group = eastern_aryan
1069
+ NOT = { culture = sinhala }
1070
+ }
1071
+ culture_group = hindusthani
1072
+ culture_group = central_indic
1073
+ }
1074
+ }
1075
+ add_province_modifier = {
1076
+ name = estate_maratha_development_of_marathi_lands_mod
1077
+ duration = -1
1078
+ }
1079
+ }
1080
+ else = {
1081
+ if = {
1082
+ limit = { has_province_modifier = estate_rajput_development_of_rajput_lands_mod }
1083
+ remove_province_modifier = estate_rajput_development_of_rajput_lands_mod
1084
+ }
1085
+ }
1086
+ }
1087
+ if = {
1088
+ limit = {
1089
+ owner = {
1090
+ has_estate_privilege = estate_ghulams_ensure_caucasian_sovereignty
1091
+ }
1092
+ }
1093
+ if = {
1094
+ limit = { culture_group = caucasian }
1095
+ add_province_modifier = {
1096
+ name = estate_ghulams_ensure_caucasian_sovereignty_mod
1097
+ duration = -1
1098
+ }
1099
+ }
1100
+ else = {
1101
+ remove_province_modifier = estate_ghulams_ensure_caucasian_sovereignty_mod
1102
+ }
1103
+ }
1104
+ }
1105
+
1106
+ on_province_owner_change_estate_privileges_effect = {
1107
+ if = {
1108
+ limit = { has_terrain = steppe }
1109
+ if = {
1110
+ limit = {
1111
+ owner = {
1112
+ has_estate_privilege = estate_cossacks_prime_herding_rights
1113
+ }
1114
+ NOT = { has_province_modifier = estate_cossacks_prime_herding_rights_mod }
1115
+ }
1116
+ add_province_modifier = {
1117
+ name = estate_cossacks_prime_herding_rights_mod
1118
+ duration = -1
1119
+ }
1120
+ }
1121
+ if = {
1122
+ limit = {
1123
+ owner = {
1124
+ has_estate_privilege = estate_cossacks_exploration_expedition
1125
+ }
1126
+ NOT = { has_province_modifier = estate_cossacks_exploration_expedition_mod }
1127
+ }
1128
+ add_province_modifier = {
1129
+ name = estate_cossacks_exploration_expedition_mod
1130
+ duration = -1
1131
+ }
1132
+ }
1133
+ }
1134
+ else_if = {
1135
+ limit = {
1136
+ has_terrain = steppe
1137
+ has_province_modifier = estate_cossacks_prime_herding_rights_mod
1138
+ owner = {
1139
+ NOT = { has_estate_privilege = estate_cossacks_prime_herding_rights }
1140
+ }
1141
+ }
1142
+ remove_province_modifier = estate_cossacks_prime_herding_rights_mod
1143
+ }
1144
+ if = {
1145
+ limit = {
1146
+ owner = {
1147
+ has_estate_privilege = estate_dhimmi_lighter_dhimmi_taxes
1148
+ }
1149
+ NOT = { religion_group = muslim }
1150
+ }
1151
+ add_province_modifier = {
1152
+ name = estate_dhimmi_lighter_dhimmi_taxes_privilege_mod
1153
+ duration = -1
1154
+ }
1155
+ }
1156
+ if = {
1157
+ limit = {
1158
+ owner = {
1159
+ has_estate_privilege = estate_dhimmi_manpower
1160
+ }
1161
+ NOT = { religion_group = muslim }
1162
+ }
1163
+ add_province_modifier = {
1164
+ name = estate_dhimmi_manpower_mod
1165
+ duration = -1
1166
+ }
1167
+ }
1168
+ if = {
1169
+ limit = {
1170
+ owner = {
1171
+ has_country_flag = dhimmi_tolerates_wrong_religion
1172
+ }
1173
+ NOT = { religion_group = muslim }
1174
+ }
1175
+ add_province_modifier = {
1176
+ name = estate_dhimmi_guaranteed_autonomy_mod
1177
+ duration = -1
1178
+ }
1179
+ }
1180
+ if = {
1181
+ limit = {
1182
+ owner = {
1183
+ has_country_flag = burghers_tolerates_orthodoxy
1184
+ }
1185
+ OR = {
1186
+ religion = orthodox
1187
+ religion = coptic
1188
+ }
1189
+ }
1190
+ add_province_modifier = {
1191
+ name = estate_burghers_guaranteed_autonomy_mod
1192
+ duration = -1
1193
+ }
1194
+ }
1195
+ if = {
1196
+ limit = {
1197
+ owner = {
1198
+ has_country_flag = gets_manpower_from_tax_buildings
1199
+ }
1200
+ }
1201
+ if = {
1202
+ limit = {
1203
+ has_owner_religion = yes
1204
+ has_building = cathedral
1205
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_cathedral }
1206
+ }
1207
+ add_province_modifier = {
1208
+ name = estate_nobles_religious_conscription_cathedral
1209
+ duration = -1
1210
+ }
1211
+ remove_province_modifier = estate_nobles_religious_conscription_temple
1212
+ }
1213
+ else_if = {
1214
+ limit = {
1215
+ has_owner_religion = yes
1216
+ has_building = temple
1217
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_temple }
1218
+ }
1219
+ add_province_modifier = {
1220
+ name = estate_nobles_religious_conscription_temple
1221
+ duration = -1
1222
+ }
1223
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
1224
+ }
1225
+ else_if = {
1226
+ limit = {
1227
+ OR = {
1228
+ has_province_modifier = estate_nobles_religious_conscription_temple
1229
+ has_province_modifier = estate_nobles_religious_conscription_cathedral
1230
+ }
1231
+ }
1232
+ remove_province_modifier = estate_nobles_religious_conscription_temple
1233
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
1234
+ }
1235
+ }
1236
+ if = {
1237
+ limit = {
1238
+ owner = {
1239
+ has_estate_privilege = estate_brahmins_guaranteed_autonomy
1240
+ }
1241
+ religion_group = dharmic
1242
+ }
1243
+ add_province_modifier = {
1244
+ name = estate_brahmins_guaranteed_autonomy_mod
1245
+ duration = -1
1246
+ }
1247
+ }
1248
+ if = {
1249
+ limit = {
1250
+ owner = {
1251
+ has_estate_privilege = estate_church_brahmins_at_court
1252
+ }
1253
+ religion_group = dharmic
1254
+ }
1255
+ add_province_modifier = {
1256
+ name = estate_brahmins_guaranteed_autonomy_mod
1257
+ duration = -1
659
1258
  }
660
1259
  }
661
1260
  if = {
@@ -1012,1274 +1611,4801 @@ on_province_owner_change_estate_privileges_effect = {
1012
1611
  duration = -1
1013
1612
  }
1014
1613
  }
1015
- }
1016
-
1017
- on_trade_good_changed_estate_privileges_effect = {
1018
1614
  if = {
1019
1615
  limit = {
1020
- has_province_modifier = estate_burghers_monopoly_of_textiles_mod
1021
- NOT = { trade_goods = silk }
1022
- NOT = { trade_goods = cloth }
1616
+ owner = {
1617
+ has_estate_privilege = estate_burghers_YEM_coffee_monopoly
1618
+ }
1619
+ trade_goods = coffee
1620
+ }
1621
+ add_province_modifier = {
1622
+ name = estate_burghers_YEM_coffee_monopoly_mod
1623
+ duration = -1
1023
1624
  }
1024
- remove_province_modifier = estate_burghers_monopoly_of_textiles_mod
1025
1625
  }
1026
- else_if = {
1626
+ if = {
1027
1627
  limit = {
1028
- from = { has_estate_privilege = estate_burghers_monopoly_of_textiles }
1029
- NOT = { has_province_modifier = estate_burghers_monopoly_of_textiles_mod }
1030
- OR = {
1031
- trade_goods = silk
1032
- trade_goods = cloth
1628
+ trade_goods = grain
1629
+ owner = {
1630
+ OR = {
1631
+ has_estate_privilege = estate_burghers_khmer_irrigation
1632
+ has_estate_privilege = estate_vaisyas_khmer_irrigation
1633
+ }
1033
1634
  }
1034
1635
  }
1035
- remove_province_modifier = estate_burghers_monopoly_of_textiles_mod
1636
+ add_province_modifier = {
1637
+ name = estate_burghers_khmer_irrigation_mod
1638
+ duration = -1
1639
+ }
1036
1640
  }
1037
1641
  if = {
1038
1642
  limit = {
1039
- has_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
1040
- NOT = { trade_goods = silk }
1041
- NOT = { trade_goods = cloth }
1643
+ has_climate = tropical
1644
+ owner = {
1645
+ has_estate_privilege = estate_burghers_tropical_nation
1646
+ }
1042
1647
  }
1043
- remove_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
1044
- }
1045
- else_if = {
1046
- limit = {
1047
- from = { has_estate_privilege = estate_vaisyas_monopoly_of_textiles }
1048
- NOT = { has_province_modifier = estate_vaisyas_monopoly_of_textiles_mod }
1049
- OR = {
1050
- trade_goods = silk
1051
- trade_goods = cloth
1052
- }
1648
+ add_province_modifier = {
1649
+ name = estate_burghers_tropical_mod
1650
+ duration = -1
1053
1651
  }
1054
- remove_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
1055
1652
  }
1056
1653
  if = {
1057
1654
  limit = {
1058
- has_province_modifier = estate_jains_monopoly_of_textiles_mod
1059
- NOT = { trade_goods = silk }
1060
- NOT = { trade_goods = cloth }
1655
+ has_climate = arid
1656
+ owner = {
1657
+ has_estate_privilege = estate_burghers_ARB_oasis_development
1658
+ }
1659
+ }
1660
+ add_province_modifier = {
1661
+ name = ARB_estate_burghers_arid_climate_development
1662
+ duration = -1
1061
1663
  }
1062
- remove_province_modifier = estate_jains_monopoly_of_textiles_mod
1063
1664
  }
1064
- else_if = {
1665
+ if = {
1065
1666
  limit = {
1066
- from = { has_estate_privilege = estate_jains_monopoly_of_textiles }
1067
- NOT = { has_province_modifier = estate_jains_monopoly_of_textiles_mod }
1068
1667
  OR = {
1069
- trade_goods = silk
1070
- trade_goods = cloth
1668
+ has_terrain = desert
1669
+ has_terrain = coastal_desert
1670
+ }
1671
+ owner = {
1672
+ has_estate_privilege = estate_burghers_ARB_oasis_development
1071
1673
  }
1072
1674
  }
1073
- remove_province_modifier = estate_jains_monopoly_of_textiles_mod
1675
+ add_province_modifier = {
1676
+ name = ARB_estate_burghers_desert
1677
+ duration = -1
1678
+ }
1074
1679
  }
1075
1680
  if = {
1076
1681
  limit = {
1077
- has_province_modifier = estate_burghers_monopoly_of_dyes_mod
1078
- NOT = { trade_goods = dyes }
1682
+ religion = animism
1683
+ owner = {
1684
+ has_estate_privilege = estate_church_lao_animism
1685
+ }
1079
1686
  }
1080
- remove_province_modifier = estate_burghers_monopoly_of_dyes_mod
1081
- }
1082
- else_if = {
1083
- limit = {
1084
- from = { has_estate_privilege = estate_burghers_monopoly_of_dyes }
1085
- NOT = { has_province_modifier = estate_burghers_monopoly_of_dyes_mod }
1086
- trade_goods = dyes
1687
+ add_province_modifier = {
1688
+ name = estate_church_lao_animism_mod
1689
+ duration = -1
1087
1690
  }
1088
- remove_province_modifier = estate_burghers_monopoly_of_dyes_mod
1089
1691
  }
1090
1692
  if = {
1091
1693
  limit = {
1092
- has_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
1093
- NOT = { trade_goods = dyes }
1694
+ religion = hinduism
1695
+ owner = {
1696
+ has_estate_privilege = estate_maratha_levies_for_muslims
1697
+ }
1094
1698
  }
1095
- remove_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
1096
- }
1097
- else_if = {
1098
- limit = {
1099
- from = { has_estate_privilege = estate_vaisyas_monopoly_of_dyes }
1100
- NOT = { has_province_modifier = estate_vaisyas_monopoly_of_dyes_mod }
1101
- trade_goods = dyes
1699
+ add_province_modifier = {
1700
+ name = estate_maratha_levies_for_muslims_mod
1701
+ duration = -1
1102
1702
  }
1103
- remove_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
1104
1703
  }
1105
1704
  if = {
1106
1705
  limit = {
1107
- has_province_modifier = estate_jains_monopoly_of_dyes_mod
1108
- NOT = { trade_goods = dyes }
1706
+ owner = {
1707
+ OR = {
1708
+ has_estate_privilege = estate_church_one_faith_one_culture
1709
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
1710
+ }
1711
+ }
1109
1712
  }
1110
- remove_province_modifier = estate_jains_monopoly_of_dyes_mod
1111
- }
1112
- else_if = {
1113
- limit = {
1114
- from = { has_estate_privilege = estate_jains_monopoly_of_dyes }
1115
- NOT = { has_province_modifier = estate_jains_monopoly_of_dyes_mod }
1116
- trade_goods = dyes
1713
+ if = {
1714
+ limit = {
1715
+ owner = {
1716
+ OR = {
1717
+ religion = ROOT
1718
+ has_harmonized_with = ROOT
1719
+ secondary_religion = ROOT
1720
+ }
1721
+ OR = {
1722
+ culture_group = ROOT
1723
+ accepted_culture = ROOT
1724
+ }
1725
+ }
1726
+ }
1727
+ add_province_modifier = {
1728
+ name = estate_church_united_faith_and_culture
1729
+ duration = -1
1730
+ }
1731
+ }
1732
+ if = {
1733
+ limit = {
1734
+ owner = {
1735
+ NOT = { culture_group = ROOT }
1736
+ NOT = { accepted_culture = ROOT }
1737
+ }
1738
+ }
1739
+ add_province_modifier = {
1740
+ name = estate_church_false_culture
1741
+ duration = -1
1742
+ }
1117
1743
  }
1118
- remove_province_modifier = estate_jains_monopoly_of_dyes_mod
1119
1744
  }
1120
1745
  if = {
1121
1746
  limit = {
1122
- has_province_modifier = estate_burghers_monopoly_of_glass_mod
1123
- NOT = { trade_goods = glass }
1747
+ owner = {
1748
+ has_estate_privilege = estate_burghers_hydraulic_rights
1749
+ }
1124
1750
  }
1125
- remove_province_modifier = estate_burghers_monopoly_of_glass_mod
1126
- }
1127
- else_if = {
1128
- limit = {
1129
- from = { has_estate_privilege = estate_burghers_monopoly_of_glass }
1130
- NOT = { has_province_modifier = estate_burghers_monopoly_of_glass_mod }
1131
- trade_goods = glass
1751
+ if = {
1752
+ limit = {
1753
+ has_terrain = desert
1754
+ }
1755
+ add_province_modifier = {
1756
+ name = estate_burghers_hydraulic_rights_desert
1757
+ duration = -1
1758
+ }
1759
+ }
1760
+ if = {
1761
+ limit = {
1762
+ has_terrain = coastal_desert
1763
+ }
1764
+ add_province_modifier = {
1765
+ name = estate_burghers_hydraulic_rights_coastal_desert
1766
+ duration = -1
1767
+ }
1768
+ }
1769
+ if = {
1770
+ limit = {
1771
+ has_terrain = steppe
1772
+ }
1773
+ add_province_modifier = {
1774
+ name = estate_burghers_hydraulic_rights_steppes
1775
+ duration = -1
1776
+ }
1777
+ }
1778
+ if = {
1779
+ limit = {
1780
+ has_terrain = savannah
1781
+ }
1782
+ add_province_modifier = {
1783
+ name = estate_burghers_hydraulic_rights_savanna
1784
+ duration = -1
1785
+ }
1132
1786
  }
1133
- remove_province_modifier = estate_burghers_monopoly_of_glass_mod
1134
1787
  }
1135
1788
  if = {
1136
1789
  limit = {
1137
- has_province_modifier = estate_vaisyas_monopoly_of_glass_mod
1138
- NOT = { trade_goods = glass }
1790
+ owner = {
1791
+ has_estate_privilege = estate_burghers_forest_expansion
1792
+ }
1139
1793
  }
1140
- remove_province_modifier = estate_vaisyas_monopoly_of_glass_mod
1141
- }
1142
- else_if = {
1143
- limit = {
1144
- from = { has_estate_privilege = estate_vaisyas_monopoly_of_glass }
1145
- NOT = { has_province_modifier = estate_vaisyas_monopoly_of_glass_mod }
1146
- trade_goods = glass
1794
+ if = {
1795
+ limit = {
1796
+ has_terrain = forest
1797
+ }
1798
+ add_province_modifier = {
1799
+ name = estate_burghers_forest_expansion_forest
1800
+ duration = -1
1801
+ }
1802
+ }
1803
+ if = {
1804
+ limit = {
1805
+ has_terrain = woods
1806
+ }
1807
+ add_province_modifier = {
1808
+ name = estate_burghers_forest_expansion_woods
1809
+ duration = -1
1810
+ }
1147
1811
  }
1148
- remove_province_modifier = estate_vaisyas_monopoly_of_glass_mod
1149
1812
  }
1150
1813
  if = {
1151
1814
  limit = {
1152
- has_province_modifier = estate_jains_monopoly_of_glass_mod
1153
- NOT = { trade_goods = glass }
1815
+ owner = {
1816
+ has_estate_privilege = estate_burghers_mountain_expansion
1817
+ }
1154
1818
  }
1155
- remove_province_modifier = estate_jains_monopoly_of_glass_mod
1156
- }
1157
- else_if = {
1158
- limit = {
1159
- from = { has_estate_privilege = estate_jains_monopoly_of_glass }
1160
- NOT = { has_province_modifier = estate_jains_monopoly_of_glass_mod }
1161
- trade_goods = glass
1819
+ if = {
1820
+ limit = {
1821
+ has_terrain = mountain
1822
+ }
1823
+ add_province_modifier = {
1824
+ name = estate_burghers_mountain_expansion_mountains
1825
+ duration = -1
1826
+ }
1827
+ }
1828
+ if = {
1829
+ limit = {
1830
+ has_terrain = highlands
1831
+ }
1832
+ add_province_modifier = {
1833
+ name = estate_burghers_mountain_expansion_highlands
1834
+ duration = -1
1835
+ }
1836
+ }
1837
+ if = {
1838
+ limit = {
1839
+ has_terrain = hills
1840
+ }
1841
+ add_province_modifier = {
1842
+ name = estate_burghers_mountain_expansion_hills
1843
+ duration = -1
1844
+ }
1162
1845
  }
1163
- remove_province_modifier = estate_jains_monopoly_of_glass_mod
1164
1846
  }
1165
1847
  if = {
1166
1848
  limit = {
1167
- has_province_modifier = estate_burghers_monopoly_of_paper_mod
1168
- NOT = { trade_goods = paper }
1849
+ owner = {
1850
+ has_estate_privilege = estate_janissary_strict_devshirme_recruitment
1851
+ }
1169
1852
  }
1170
- remove_province_modifier = estate_burghers_monopoly_of_paper_mod
1171
- }
1172
- else_if = {
1173
- limit = {
1174
- from = { has_estate_privilege = estate_burghers_monopoly_of_paper }
1175
- NOT = { has_province_modifier = estate_burghers_monopoly_of_paper_mod }
1176
- trade_goods = paper
1853
+ if = {
1854
+ limit = {
1855
+ owner = { NOT = { religion_group = ROOT } }
1856
+ }
1857
+ add_province_modifier = {
1858
+ name = estate_janissary_strict_devshirme_recruitment_mod
1859
+ duration = -1
1860
+ }
1177
1861
  }
1178
- remove_province_modifier = estate_burghers_monopoly_of_paper_mod
1179
1862
  }
1180
1863
  if = {
1181
1864
  limit = {
1182
- has_province_modifier = estate_vaisyas_monopoly_of_paper_mod
1183
- NOT = { trade_goods = paper }
1865
+ owner = {
1866
+ has_estate_privilege = estate_dhimmi_millet_system
1867
+ }
1184
1868
  }
1185
- remove_province_modifier = estate_vaisyas_monopoly_of_paper_mod
1186
- }
1187
- else_if = {
1188
- limit = {
1189
- from = { has_estate_privilege = estate_vaisyas_monopoly_of_paper }
1190
- NOT = { has_province_modifier = estate_vaisyas_monopoly_of_paper_mod }
1191
- trade_goods = paper
1869
+ if = {
1870
+ limit = {
1871
+ OR = {
1872
+ religion_group = christian
1873
+ religion_group = jewish_group
1874
+ }
1875
+ }
1876
+ add_province_modifier = {
1877
+ name = estate_dhimmi_millet_system_mod
1878
+ duration = -1
1879
+ }
1880
+ }
1881
+ else = {
1882
+ if = {
1883
+ limit = { has_province_modifier = estate_dhimmi_millet_system_mod }
1884
+ remove_province_modifier = estate_dhimmi_millet_system_mod
1885
+ }
1192
1886
  }
1193
- remove_province_modifier = estate_vaisyas_monopoly_of_paper_mod
1194
1887
  }
1195
1888
  if = {
1196
1889
  limit = {
1197
- has_province_modifier = estate_jains_monopoly_of_paper_mod
1198
- NOT = { trade_goods = paper }
1890
+ owner = {
1891
+ has_estate_privilege = estate_church_development_of_temples
1892
+ }
1199
1893
  }
1200
- remove_province_modifier = estate_jains_monopoly_of_paper_mod
1201
- }
1202
- else_if = {
1203
- limit = {
1204
- from = { has_estate_privilege = estate_jains_monopoly_of_paper }
1205
- NOT = { has_province_modifier = estate_jains_monopoly_of_paper_mod }
1206
- trade_goods = paper
1894
+ if = {
1895
+ limit = {
1896
+ has_tax_building_trigger = yes
1897
+ OR = {
1898
+ has_owner_religion = yes
1899
+ has_owner_harmonized_religion = yes
1900
+ has_owner_secondary_religion = yes
1901
+ }
1902
+ }
1903
+ add_province_modifier = {
1904
+ name = estate_church_development_of_temples_mod
1905
+ duration = -1
1906
+ }
1907
+ }
1908
+ else = {
1909
+ if = {
1910
+ limit = { has_province_modifier = estate_church_development_of_temples_mod }
1911
+ remove_province_modifier = estate_church_development_of_temples_mod
1912
+ }
1207
1913
  }
1208
- remove_province_modifier = estate_jains_monopoly_of_paper_mod
1209
1914
  }
1210
1915
  if = {
1211
1916
  limit = {
1212
- has_province_modifier = estate_church_monopoly_of_incense_mod
1213
- NOT = { trade_goods = incense }
1917
+ owner = {
1918
+ has_estate_privilege = estate_brahmins_development_of_temples
1919
+ }
1214
1920
  }
1215
- remove_province_modifier = estate_church_monopoly_of_incense_mod
1216
- }
1217
- else_if = {
1218
- limit = {
1219
- from = { has_estate_privilege = estate_church_monopoly_of_incense }
1220
- NOT = { has_province_modifier = estate_church_monopoly_of_incense_mod }
1221
- trade_goods = incense
1921
+ if = {
1922
+ limit = {
1923
+ religion_group = dharmic
1924
+ has_tax_building_trigger = yes
1925
+ }
1926
+ add_province_modifier = {
1927
+ name = estate_brahmins_development_of_temples_mod
1928
+ duration = -1
1929
+ }
1930
+ }
1931
+ else = {
1932
+ if = {
1933
+ limit = { has_province_modifier = estate_brahmins_development_of_temples_mod }
1934
+ remove_province_modifier = estate_brahmins_development_of_temples_mod
1935
+ }
1222
1936
  }
1223
- remove_province_modifier = estate_church_monopoly_of_incense_mod
1224
1937
  }
1225
1938
  if = {
1226
1939
  limit = {
1227
- has_province_modifier = estate_brahmins_monopoly_of_incense_mod
1228
- NOT = { trade_goods = incense }
1940
+ owner = {
1941
+ has_estate_privilege = estate_burghers_development_of_cities
1942
+ }
1229
1943
  }
1230
- remove_province_modifier = estate_brahmins_monopoly_of_incense_mod
1231
- }
1232
- else_if = {
1233
- limit = {
1234
- from = { has_estate_privilege = estate_brahmins_monopoly_of_incense }
1235
- NOT = { has_province_modifier = estate_brahmins_monopoly_of_incense_mod }
1236
- trade_goods = incense
1944
+ if = {
1945
+ limit = {
1946
+ OR = {
1947
+ province_has_center_of_trade_of_level = 1
1948
+ has_river_estuary_trigger = yes
1949
+ }
1950
+ }
1951
+ add_province_modifier = {
1952
+ name = estate_burghers_development_of_cities_mod
1953
+ duration = -1
1954
+ }
1955
+ }
1956
+ else = {
1957
+ if = {
1958
+ limit = { has_province_modifier = estate_burghers_development_of_cities_mod }
1959
+ remove_province_modifier = estate_burghers_development_of_cities_mod
1960
+ }
1237
1961
  }
1238
- remove_province_modifier = estate_brahmins_monopoly_of_incense_mod
1239
1962
  }
1240
1963
  if = {
1241
1964
  limit = {
1242
- has_province_modifier = estate_church_monopoly_of_wool_mod
1243
- NOT = { trade_goods = wool }
1965
+ owner = {
1966
+ has_estate_privilege = estate_cossacks_freedom_of_the_steppes
1967
+ }
1244
1968
  }
1245
- remove_province_modifier = estate_church_monopoly_of_wool_mod
1246
- }
1247
- else_if = {
1248
- limit = {
1249
- from = { has_estate_privilege = estate_church_monopoly_of_wool }
1250
- NOT = { has_province_modifier = estate_church_monopoly_of_wool_mod }
1251
- trade_goods = wool
1969
+ if = {
1970
+ limit = {
1971
+ has_terrain = steppe
1972
+ }
1973
+ add_province_modifier = {
1974
+ name = estate_cossacks_freedom_of_the_steppes_mod
1975
+ duration = -1
1976
+ }
1977
+ }
1978
+ else = {
1979
+ if = {
1980
+ limit = { has_province_modifier = estate_cossacks_freedom_of_the_steppes_mod }
1981
+ remove_province_modifier = estate_cossacks_freedom_of_the_steppes_mod
1982
+ }
1252
1983
  }
1253
- remove_province_modifier = estate_church_monopoly_of_wool_mod
1254
1984
  }
1255
1985
  if = {
1256
1986
  limit = {
1257
- has_province_modifier = estate_brahmins_monopoly_of_wool_mod
1258
- NOT = { trade_goods = wool }
1987
+ owner = {
1988
+ has_estate_privilege = estate_nomadic_tribes_freedom_of_the_steppes
1989
+ }
1259
1990
  }
1260
- remove_province_modifier = estate_brahmins_monopoly_of_wool_mod
1261
- }
1262
- else_if = {
1263
- limit = {
1264
- from = { has_estate_privilege = estate_brahmins_monopoly_of_wool }
1265
- NOT = { has_province_modifier = estate_brahmins_monopoly_of_wool_mod }
1266
- trade_goods = wool
1991
+ if = {
1992
+ limit = {
1993
+ has_terrain = steppe
1994
+ }
1995
+ add_province_modifier = {
1996
+ name = estate_nomadic_tribes_freedom_of_the_steppes_mod
1997
+ duration = -1
1998
+ }
1999
+ }
2000
+ else = {
2001
+ if = {
2002
+ limit = { has_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod }
2003
+ remove_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod
2004
+ }
1267
2005
  }
1268
- remove_province_modifier = estate_brahmins_monopoly_of_wool_mod
1269
2006
  }
1270
2007
  if = {
1271
2008
  limit = {
1272
- has_province_modifier = estate_church_monopoly_of_wine_mod
1273
- NOT = { trade_goods = wine }
2009
+ owner = {
2010
+ has_estate_privilege = estate_dhimmi_development_of_communities
2011
+ }
2012
+ has_tax_building_trigger = yes
1274
2013
  }
1275
- remove_province_modifier = estate_church_monopoly_of_wine_mod
1276
- }
1277
- else_if = {
1278
- limit = {
1279
- from = { has_estate_privilege = estate_church_monopoly_of_wine }
1280
- NOT = { has_province_modifier = estate_church_monopoly_of_wine_mod }
1281
- trade_goods = wine
2014
+ if = {
2015
+ limit = {
2016
+ NOT = { religion_group = ROOT }
2017
+ }
2018
+ add_province_modifier = {
2019
+ name = estate_nomadic_tribes_freedom_of_the_steppes_mod
2020
+ duration = -1
2021
+ }
2022
+ }
2023
+ else = {
2024
+ if = {
2025
+ limit = { has_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod }
2026
+ remove_province_modifier = estate_nomadic_tribes_freedom_of_the_steppes_mod
2027
+ }
1282
2028
  }
1283
- remove_province_modifier = estate_church_monopoly_of_wine_mod
1284
2029
  }
1285
2030
  if = {
1286
2031
  limit = {
1287
- has_province_modifier = estate_church_monopoly_of_slaves_mod
1288
- NOT = { trade_goods = slaves }
2032
+ owner = {
2033
+ has_estate_privilege = estate_vaisyas_development_of_cities
2034
+ }
1289
2035
  }
1290
- remove_province_modifier = estate_church_monopoly_of_slaves_mod
1291
- }
1292
- else_if = {
1293
- limit = {
1294
- from = { has_estate_privilege = estate_church_monopoly_of_slaves }
1295
- NOT = { has_province_modifier = estate_church_monopoly_of_slaves_mod }
1296
- trade_goods = slaves
2036
+ if = {
2037
+ limit = {
2038
+ OR = {
2039
+ province_has_center_of_trade_of_level = 1
2040
+ has_river_estuary_trigger = yes
2041
+ }
2042
+ }
2043
+ add_province_modifier = {
2044
+ name = estate_vaisyas_development_of_cities_mod
2045
+ duration = -1
2046
+ }
2047
+ }
2048
+ else = {
2049
+ if = {
2050
+ limit = { has_province_modifier = estate_vaisyas_development_of_cities_mod }
2051
+ remove_province_modifier = estate_vaisyas_development_of_cities_mod
2052
+ }
1297
2053
  }
1298
- remove_province_modifier = estate_church_monopoly_of_slaves_mod
1299
2054
  }
1300
2055
  if = {
1301
2056
  limit = {
1302
- has_province_modifier = estate_nobles_monopoly_of_metals_mod
1303
- NOT = { trade_goods = copper }
1304
- NOT = { trade_goods = iron }
2057
+ owner = {
2058
+ has_estate_privilege = estate_jains_development_of_cities
2059
+ }
1305
2060
  }
1306
- remove_province_modifier = estate_nobles_monopoly_of_metals_mod
1307
- }
1308
- else_if = {
1309
- limit = {
1310
- from = { has_estate_privilege = estate_nobles_monopoly_of_metals }
1311
- NOT = { has_province_modifier = estate_nobles_monopoly_of_metals_mod }
1312
- OR = {
1313
- trade_goods = copper
1314
- trade_goods = iron
2061
+ if = {
2062
+ limit = {
2063
+ OR = {
2064
+ province_has_center_of_trade_of_level = 1
2065
+ has_river_estuary_trigger = yes
2066
+ }
2067
+ }
2068
+ add_province_modifier = {
2069
+ name = estate_jains_development_of_cities_mod
2070
+ duration = -1
2071
+ }
2072
+ }
2073
+ else = {
2074
+ if = {
2075
+ limit = { has_province_modifier = estate_jains_development_of_cities_mod }
2076
+ remove_province_modifier = estate_jains_development_of_cities_mod
1315
2077
  }
1316
2078
  }
1317
- remove_province_modifier = estate_nobles_monopoly_of_metals_mod
1318
2079
  }
1319
2080
  if = {
1320
2081
  limit = {
1321
- has_province_modifier = estate_rajput_monopoly_of_metals_mod
1322
- NOT = { trade_goods = copper }
1323
- NOT = { trade_goods = iron }
2082
+ owner = {
2083
+ has_estate_privilege = estate_burghers_great_works_of_iran
2084
+ }
1324
2085
  }
1325
- remove_province_modifier = estate_rajput_monopoly_of_metals_mod
1326
- }
1327
- else_if = {
1328
- limit = {
1329
- from = { has_estate_privilege = estate_rajput_monopoly_of_metals }
1330
- NOT = { has_province_modifier = estate_rajput_monopoly_of_metals_mod }
1331
- OR = {
1332
- trade_goods = copper
1333
- trade_goods = iron
2086
+ if = {
2087
+ limit = {
2088
+ OR = {
2089
+ region = persia_region
2090
+ region = khorasan_region
2091
+ }
2092
+ }
2093
+ if = {
2094
+ limit = { has_terrain = mountain }
2095
+ add_province_modifier = { name = turkoman_privilege_mountains duration = -1 }
2096
+ }
2097
+ if = {
2098
+ limit = { has_terrain = highlands }
2099
+ add_province_modifier = { name = turkoman_privilege_highlands duration = -1 }
2100
+ }
2101
+ if = {
2102
+ limit = { has_terrain = desert }
2103
+ add_province_modifier = { name = turkoman_privilege_desert duration = -1 }
2104
+ }
2105
+ if = {
2106
+ limit = { has_terrain = drylands }
2107
+ add_province_modifier = { name = turkoman_privilege_drylands duration = -1 }
1334
2108
  }
1335
2109
  }
1336
- remove_province_modifier = estate_rajput_monopoly_of_metals_mod
1337
- }
1338
- if = {
1339
- limit = {
1340
- has_province_modifier = estate_maratha_monopoly_of_metals_mod
1341
- NOT = { trade_goods = copper }
1342
- NOT = { trade_goods = iron }
2110
+ else = {
2111
+ if = {
2112
+ limit = { has_province_modifier = turkoman_privilege_mountains }
2113
+ remove_province_modifier = turkoman_privilege_mountains
2114
+ }
2115
+ if = {
2116
+ limit = { has_province_modifier = turkoman_privilege_highlands }
2117
+ remove_province_modifier = turkoman_privilege_highlands
2118
+ }
2119
+ if = {
2120
+ limit = { has_province_modifier = turkoman_privilege_desert }
2121
+ remove_province_modifier = turkoman_privilege_desert
2122
+ }
2123
+ if = {
2124
+ limit = { has_province_modifier = turkoman_privilege_drylands }
2125
+ remove_province_modifier = turkoman_privilege_drylands
2126
+ }
1343
2127
  }
1344
- remove_province_modifier = estate_maratha_monopoly_of_metals_mod
1345
2128
  }
1346
- else_if = {
2129
+ if = {
1347
2130
  limit = {
1348
- from = { has_estate_privilege = estate_maratha_monopoly_of_metals }
1349
- NOT = { has_province_modifier = estate_maratha_monopoly_of_metals_mod }
1350
- OR = {
1351
- trade_goods = copper
1352
- trade_goods = iron
2131
+ owner = {
2132
+ OR = {
2133
+ has_estate_privilege = estate_nobles_mamlukian_administration
2134
+ has_estate_privilege = estate_ghulams_mamlukian_administration
2135
+ has_estate_privilege = estate_qizilbash_mamlukian_administration
2136
+ }
1353
2137
  }
2138
+ region = egypt_region
2139
+ }
2140
+ add_province_modifier = {
2141
+ name = mamlukian_administration_modifier
2142
+ duration = -1
1354
2143
  }
1355
- remove_province_modifier = estate_maratha_monopoly_of_metals_mod
1356
2144
  }
1357
2145
  if = {
1358
2146
  limit = {
1359
- has_province_modifier = estate_nobles_monopoly_of_livestock_mod
1360
- NOT = { trade_goods = livestock }
2147
+ owner = {
2148
+ has_estate_privilege = estate_ghulams_ensure_caucasian_sovereignty
2149
+ }
1361
2150
  }
1362
- remove_province_modifier = estate_nobles_monopoly_of_livestock_mod
1363
- }
1364
- else_if = {
1365
- limit = {
1366
- from = { has_estate_privilege = estate_nobles_monopoly_of_livestock }
1367
- NOT = { has_province_modifier = estate_nobles_monopoly_of_livestock_mod }
1368
- trade_goods = livestock
2151
+ if = {
2152
+ limit = { culture_group = caucasian }
2153
+ add_province_modifier = {
2154
+ name = estate_ghulams_ensure_caucasian_sovereignty_mod
2155
+ duration = -1
2156
+ }
2157
+ }
2158
+ else = {
2159
+ remove_province_modifier = estate_ghulams_ensure_caucasian_sovereignty_mod
1369
2160
  }
1370
- remove_province_modifier = estate_nobles_monopoly_of_livestock_mod
1371
2161
  }
2162
+ }
2163
+
2164
+ on_province_tax_building_built_estate_privileges_effect = {
1372
2165
  if = {
1373
2166
  limit = {
1374
- has_province_modifier = estate_rajput_monopoly_of_livestock_mod
1375
- NOT = { trade_goods = livestock }
2167
+ FROM = {
2168
+ OR = {
2169
+ religion = buddhism
2170
+ religion = mahayana
2171
+ religion = vajrayana
2172
+ }
2173
+ has_estate_privilege = estate_church_karma_temples
2174
+ }
1376
2175
  }
1377
- remove_province_modifier = estate_rajput_monopoly_of_livestock_mod
1378
- }
1379
- else_if = {
1380
- limit = {
1381
- from = { has_estate_privilege = estate_rajput_monopoly_of_livestock }
1382
- NOT = { has_province_modifier = estate_rajput_monopoly_of_livestock_mod }
1383
- trade_goods = livestock
2176
+ FROM = {
2177
+ if = {
2178
+ limit = {
2179
+ has_government_attribute = buffed_monastic_temples
2180
+ }
2181
+ add_karma = 5
2182
+ }
2183
+ else = {
2184
+ add_karma = 3
2185
+ }
1384
2186
  }
1385
- remove_province_modifier = estate_rajput_monopoly_of_livestock_mod
1386
2187
  }
1387
2188
  if = {
1388
2189
  limit = {
1389
- has_province_modifier = estate_maratha_monopoly_of_livestock_mod
1390
- NOT = { trade_goods = livestock }
2190
+ FROM = {
2191
+ religion = catholic
2192
+ has_estate_privilege = estate_church_influence_temples
2193
+ }
1391
2194
  }
1392
- remove_province_modifier = estate_maratha_monopoly_of_livestock_mod
1393
- }
1394
- else_if = {
1395
- limit = {
1396
- from = { has_estate_privilege = estate_maratha_monopoly_of_livestock }
1397
- NOT = { has_province_modifier = estate_maratha_monopoly_of_livestock_mod }
1398
- trade_goods = livestock
2195
+ FROM = {
2196
+ add_papal_influence = 3
1399
2197
  }
1400
- remove_province_modifier = estate_maratha_monopoly_of_livestock_mod
1401
2198
  }
1402
2199
  if = {
1403
2200
  limit = {
1404
- has_province_modifier = estate_nobles_monopoly_of_gems_mod
1405
- NOT = { trade_goods = gems }
2201
+ owner = {
2202
+ has_country_flag = gets_manpower_from_tax_buildings
2203
+ }
1406
2204
  }
1407
- remove_province_modifier = estate_nobles_monopoly_of_gems_mod
1408
- }
1409
- else_if = {
1410
- limit = {
1411
- from = { has_estate_privilege = estate_nobles_monopoly_of_gems }
1412
- NOT = { has_province_modifier = estate_nobles_monopoly_of_gems_mod }
1413
- trade_goods = gems
2205
+ if = {
2206
+ limit = {
2207
+ has_owner_religion = yes
2208
+ has_building = cathedral
2209
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_cathedral }
2210
+ }
2211
+ add_province_modifier = {
2212
+ name = estate_nobles_religious_conscription_cathedral
2213
+ duration = -1
2214
+ }
2215
+ remove_province_modifier = estate_nobles_religious_conscription_temple
2216
+ }
2217
+ else_if = {
2218
+ limit = {
2219
+ has_owner_religion = yes
2220
+ has_building = temple
2221
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_temple }
2222
+ }
2223
+ add_province_modifier = {
2224
+ name = estate_nobles_religious_conscription_temple
2225
+ duration = -1
2226
+ }
2227
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
2228
+ }
2229
+ else_if = {
2230
+ limit = {
2231
+ OR = {
2232
+ has_province_modifier = estate_nobles_religious_conscription_temple
2233
+ has_province_modifier = estate_nobles_religious_conscription_cathedral
2234
+ }
2235
+ }
2236
+ remove_province_modifier = estate_nobles_religious_conscription_temple
2237
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
1414
2238
  }
1415
- remove_province_modifier = estate_nobles_monopoly_of_gems_mod
1416
2239
  }
1417
2240
  if = {
1418
2241
  limit = {
1419
- has_province_modifier = estate_rajput_monopoly_of_gems_mod
1420
- NOT = { trade_goods = gems }
2242
+ owner = { has_estate_privilege = estate_church_development_of_temples }
2243
+ OR = {
2244
+ has_owner_religion = yes
2245
+ has_owner_harmonized_religion = yes
2246
+ has_owner_secondary_religion = yes
2247
+ }
1421
2248
  }
1422
- remove_province_modifier = estate_rajput_monopoly_of_gems_mod
1423
- }
1424
- else_if = {
1425
- limit = {
1426
- from = { has_estate_privilege = estate_rajput_monopoly_of_gems }
1427
- NOT = { has_province_modifier = estate_rajput_monopoly_of_gems_mod }
1428
- trade_goods = gems
2249
+ add_province_modifier = {
2250
+ name = estate_church_development_of_temples_mod
2251
+ duration = -1
1429
2252
  }
1430
- remove_province_modifier = estate_rajput_monopoly_of_gems_mod
1431
2253
  }
1432
2254
  if = {
1433
2255
  limit = {
1434
- has_province_modifier = estate_maratha_monopoly_of_gems_mod
1435
- NOT = { trade_goods = gems }
2256
+ owner = { has_estate_privilege = estate_brahmins_development_of_temples }
2257
+ religion_group = dharmic
2258
+ has_tax_building_trigger = yes
2259
+ }
2260
+ add_province_modifier = {
2261
+ name = estate_brahmins_development_of_temples_mod
2262
+ duration = -1
1436
2263
  }
1437
- remove_province_modifier = estate_maratha_monopoly_of_gems_mod
1438
2264
  }
1439
- else_if = {
2265
+ if = {
1440
2266
  limit = {
1441
- from = { has_estate_privilege = estate_maratha_monopoly_of_gems }
1442
- NOT = { has_province_modifier = estate_maratha_monopoly_of_gems_mod }
1443
- trade_goods = gems
2267
+ owner = {
2268
+ has_estate_privilege = estate_dhimmi_development_of_communities
2269
+ NOT = { religion_group = PREV }
2270
+ }
2271
+ }
2272
+ add_province_modifier = {
2273
+ name = estate_dhimmi_development_of_communities_mod
2274
+ duration = -1
1444
2275
  }
1445
- remove_province_modifier = estate_maratha_monopoly_of_gems_mod
1446
2276
  }
2277
+
1447
2278
  }
1448
2279
 
1449
- on_loan_repaid_estate_privileges_effect = {
2280
+ on_province_tax_building_destroyed_estate_privileges_effect = {
1450
2281
  if = {
1451
2282
  limit = {
1452
- has_estate_privilege = estate_burghers_indebted_to_burghers
1453
- NOT = { has_estate_loan = 1 }
2283
+ FROM = {
2284
+ OR = {
2285
+ religion = buddhism
2286
+ religion = mahayana
2287
+ religion = vajrayana
2288
+ }
2289
+ has_estate_privilege = estate_church_karma_temples
2290
+ }
2291
+ }
2292
+ FROM = {
2293
+ if = {
2294
+ limit = {
2295
+ has_government_attribute = buffed_monastic_temples
2296
+ }
2297
+ add_karma = -5
2298
+ }
2299
+ else = {
2300
+ add_karma = -3
2301
+ }
1454
2302
  }
1455
- remove_estate_privilege = estate_burghers_indebted_to_burghers
1456
2303
  }
1457
2304
  if = {
1458
2305
  limit = {
1459
- has_estate_privilege = estate_jains_indebted_to_jains
1460
- NOT = { has_estate_loan = 1 }
2306
+ FROM = {
2307
+ religion = catholic
2308
+ has_estate_privilege = estate_church_influence_temples
2309
+ }
2310
+ }
2311
+ FROM = {
2312
+ add_papal_influence = -3
1461
2313
  }
1462
- remove_estate_privilege = estate_jains_indebted_to_jains
1463
2314
  }
1464
- }
1465
-
1466
-
1467
- on_bi_yearly_pulse_estate_privileges_effect = {
1468
2315
  if = {
1469
2316
  limit = {
1470
- OR = {
1471
- has_estate_privilege = estate_nobles_supremacy_over_crown
1472
- has_estate_privilege = estate_brahmins_supremacy_over_crown
2317
+ owner = {
2318
+ has_country_flag = gets_manpower_from_tax_buildings
1473
2319
  }
1474
- NOT = { has_any_active_estate_agenda = yes }
1475
2320
  }
1476
- country_event = { id = estate_privileges_and_agendas_events.3 }
2321
+ if = {
2322
+ limit = {
2323
+ has_owner_religion = yes
2324
+ has_building = cathedral
2325
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_cathedral }
2326
+ }
2327
+ add_province_modifier = {
2328
+ name = estate_nobles_religious_conscription_cathedral
2329
+ duration = -1
2330
+ }
2331
+ remove_province_modifier = estate_nobles_religious_conscription_temple
2332
+ }
2333
+ else_if = {
2334
+ limit = {
2335
+ has_owner_religion = yes
2336
+ has_building = temple
2337
+ NOT = { has_province_modifier = estate_nobles_religious_conscription_temple }
2338
+ }
2339
+ add_province_modifier = {
2340
+ name = estate_nobles_religious_conscription_temple
2341
+ duration = -1
2342
+ }
2343
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
2344
+ }
2345
+ else_if = {
2346
+ limit = {
2347
+ OR = {
2348
+ has_province_modifier = estate_nobles_religious_conscription_temple
2349
+ has_province_modifier = estate_nobles_religious_conscription_cathedral
2350
+ }
2351
+ }
2352
+ remove_province_modifier = estate_nobles_religious_conscription_temple
2353
+ remove_province_modifier = estate_nobles_religious_conscription_cathedral
2354
+ }
1477
2355
  }
1478
- }
1479
-
1480
- reapply_estate_privilege = {
1481
- # privilege: The privilege we want to reapply
1482
2356
  if = {
1483
- limit = {
1484
- can_revoke_estate_privilege = $privilege$
2357
+ limit = {
2358
+ has_province_modifier = estate_church_development_of_temples_mod
1485
2359
  }
1486
- hidden_effect = {
1487
- remove_estate_privilege = $privilege$
2360
+ remove_province_modifier = estate_church_development_of_temples_mod
2361
+ }
2362
+ if = {
2363
+ limit = {
2364
+ has_province_modifier = estate_brahmins_development_of_temples_mod
1488
2365
  }
1489
- set_estate_privilege = $privilege$
2366
+ remove_province_modifier = estate_brahmins_development_of_temples_mod
2367
+ }
2368
+ if = {
2369
+ limit = {
2370
+ has_province_modifier = estate_dhimmi_development_of_communities_mod
2371
+ }
2372
+ remove_province_modifier = estate_dhimmi_development_of_communities_mod
1490
2373
  }
1491
- }
1492
- scaled_estate_church_land_share_effect = {
1493
- scaled_estate_land_share_add_effect = { estate = estate_church }
1494
- }
1495
-
1496
- scaled_estate_nobles_land_share_effect = {
1497
- scaled_estate_land_share_add_effect = { estate = estate_nobles }
1498
- }
1499
-
1500
- scaled_estate_nobles_negative_land_share_effect = {
1501
- scaled_estate_land_share_reduce_effect = { estate = estate_nobles }
1502
- }
1503
-
1504
- scaled_estate_burghers_land_share_effect = {
1505
- scaled_estate_land_share_add_effect = { estate = estate_burghers }
1506
- }
1507
-
1508
- scaled_estate_rajput_land_share_effect = {
1509
- scaled_estate_land_share_add_effect = { estate = estate_rajput }
1510
- }
1511
-
1512
- scaled_estate_rajput_negative_land_share_effect = {
1513
- scaled_estate_land_share_reduce_effect = { estate = estate_rajput }
1514
- }
1515
-
1516
- scaled_estate_maratha_land_share_effect = {
1517
- scaled_estate_land_share_add_effect = { estate = estate_maratha }
1518
- }
1519
-
1520
- scaled_estate_maratha_negative_land_share_effect = {
1521
- scaled_estate_land_share_reduce_effect = { estate = estate_maratha }
1522
- }
1523
-
1524
- scaled_estate_brahmins_land_share_effect = {
1525
- scaled_estate_land_share_add_effect = { estate = estate_brahmins }
1526
- }
1527
-
1528
- scaled_estate_brahmins_negative_land_share_effect = {
1529
- scaled_estate_land_share_reduce_effect = { estate = estate_brahmins }
1530
- }
1531
-
1532
- scaled_estate_vaisyas_land_share_effect = {
1533
- scaled_estate_land_share_add_effect = { estate = estate_vaisyas }
1534
- }
1535
-
1536
- scaled_estate_dhimmi_land_share_effect = {
1537
- scaled_estate_land_share_add_effect = { estate = estate_dhimmi }
1538
- }
1539
-
1540
- scaled_estate_dhimmi_negative_land_share_effect = {
1541
- scaled_estate_land_share_reduce_effect = { estate = estate_dhimmi }
1542
- }
1543
-
1544
- scaled_estate_cossacks_land_share_effect = {
1545
- scaled_estate_land_share_add_effect = { estate = estate_cossack }
1546
2374
  }
1547
2375
 
1548
- #Based on those above, but you can choose which estate you use
1549
- #example of usage: scaled_estate_land_share_add_effect = { estate = estate_nobles }
1550
- scaled_estate_land_share_add_effect = {
2376
+ on_trade_good_changed_estate_privileges_effect = {
1551
2377
  if = {
1552
2378
  limit = {
1553
- NOT = { total_development = 50 }
2379
+ has_province_modifier = estate_burghers_persian_rugs_modifier
2380
+ NOT = { trade_goods = silk }
2381
+ NOT = { trade_goods = cloth }
2382
+ NOT = { trade_goods = dyes }
1554
2383
  }
1555
- give_estate_land_share_large = { estate = $estate$ }
2384
+ remove_province_modifier = estate_burghers_persian_rugs_modifier
1556
2385
  }
1557
2386
  else_if = {
1558
2387
  limit = {
1559
- total_development = 50
1560
- NOT = { total_development = 100 }
2388
+ from = { has_estate_privilege = estate_burghers_persian_rugs }
2389
+ NOT = { has_province_modifier = estate_burghers_persian_rugs_modifier }
2390
+ OR = {
2391
+ trade_goods = silk
2392
+ trade_goods = cloth
2393
+ trade_goods = dyes
2394
+ }
1561
2395
  }
1562
- give_estate_land_share_medium = { estate = $estate$ }
2396
+ add_province_modifier = {
2397
+ name = estate_burghers_persian_rugs_modifier
2398
+ duration = -1
2399
+ }
2400
+ }
2401
+ ###MONOPOLIES###
2402
+ if = {
2403
+ limit = {
2404
+ has_province_modifier = estate_burghers_monopoly_of_textiles_mod
2405
+ NOT = { trade_goods = silk }
2406
+ NOT = { trade_goods = cloth }
2407
+ }
2408
+ remove_province_modifier = estate_burghers_monopoly_of_textiles_mod
1563
2409
  }
1564
2410
  else_if = {
1565
2411
  limit = {
1566
- total_development = 100
2412
+ from = { has_estate_privilege = estate_burghers_monopoly_of_textiles }
2413
+ NOT = { has_province_modifier = estate_burghers_monopoly_of_textiles_mod }
2414
+ OR = {
2415
+ trade_goods = silk
2416
+ trade_goods = cloth
2417
+ }
1567
2418
  }
1568
- give_estate_land_share_small = { estate = $estate$ }
2419
+ remove_province_modifier = estate_burghers_monopoly_of_textiles_mod
1569
2420
  }
1570
- }
1571
-
1572
- #example of usage: scaled_estate_land_share_reduce_effect = { estate = estate_nobles }
1573
- scaled_estate_land_share_reduce_effect = {
1574
2421
  if = {
1575
2422
  limit = {
1576
- NOT = { total_development = 50 }
2423
+ has_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
2424
+ NOT = { trade_goods = silk }
2425
+ NOT = { trade_goods = cloth }
1577
2426
  }
1578
- take_estate_land_share_large = { estate = $estate$ }
2427
+ remove_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
1579
2428
  }
1580
2429
  else_if = {
1581
2430
  limit = {
1582
- total_development = 50
1583
- NOT = { total_development = 100 }
2431
+ from = { has_estate_privilege = estate_vaisyas_monopoly_of_textiles }
2432
+ NOT = { has_province_modifier = estate_vaisyas_monopoly_of_textiles_mod }
2433
+ OR = {
2434
+ trade_goods = silk
2435
+ trade_goods = cloth
2436
+ }
1584
2437
  }
1585
- give_estate_land_share_medium = { estate = $estate$ }
2438
+ remove_province_modifier = estate_vaisyas_monopoly_of_textiles_mod
1586
2439
  }
1587
- else_if = {
2440
+ if = {
1588
2441
  limit = {
1589
- total_development = 100
2442
+ has_province_modifier = estate_jains_monopoly_of_textiles_mod
2443
+ NOT = { trade_goods = silk }
2444
+ NOT = { trade_goods = cloth }
1590
2445
  }
1591
- give_estate_land_share_small = { estate = $estate$ }
2446
+ remove_province_modifier = estate_jains_monopoly_of_textiles_mod
1592
2447
  }
1593
- }
1594
-
1595
- # Expects country scope
1596
- seize_land_effect = {
1597
- hidden_effect = {
1598
- set_variable = {
1599
- which = seize_land_effect_variable
1600
- value = $scale$
2448
+ else_if = {
2449
+ limit = {
2450
+ from = { has_estate_privilege = estate_jains_monopoly_of_textiles }
2451
+ NOT = { has_province_modifier = estate_jains_monopoly_of_textiles_mod }
2452
+ OR = {
2453
+ trade_goods = silk
2454
+ trade_goods = cloth
2455
+ }
1601
2456
  }
1602
- while = {
1603
- limit = {
2457
+ remove_province_modifier = estate_jains_monopoly_of_textiles_mod
2458
+ }
2459
+ if = {
2460
+ limit = {
2461
+ has_province_modifier = estate_burghers_monopoly_of_dyes_mod
2462
+ NOT = { trade_goods = dyes }
2463
+ }
2464
+ remove_province_modifier = estate_burghers_monopoly_of_dyes_mod
2465
+ }
2466
+ else_if = {
2467
+ limit = {
2468
+ from = { has_estate_privilege = estate_burghers_monopoly_of_dyes }
2469
+ NOT = { has_province_modifier = estate_burghers_monopoly_of_dyes_mod }
2470
+ trade_goods = dyes
2471
+ }
2472
+ remove_province_modifier = estate_burghers_monopoly_of_dyes_mod
2473
+ }
2474
+ if = {
2475
+ limit = {
2476
+ has_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
2477
+ NOT = { trade_goods = dyes }
2478
+ }
2479
+ remove_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
2480
+ }
2481
+ else_if = {
2482
+ limit = {
2483
+ from = { has_estate_privilege = estate_vaisyas_monopoly_of_dyes }
2484
+ NOT = { has_province_modifier = estate_vaisyas_monopoly_of_dyes_mod }
2485
+ trade_goods = dyes
2486
+ }
2487
+ remove_province_modifier = estate_vaisyas_monopoly_of_dyes_mod
2488
+ }
2489
+ if = {
2490
+ limit = {
2491
+ has_province_modifier = estate_jains_monopoly_of_dyes_mod
2492
+ NOT = { trade_goods = dyes }
2493
+ }
2494
+ remove_province_modifier = estate_jains_monopoly_of_dyes_mod
2495
+ }
2496
+ else_if = {
2497
+ limit = {
2498
+ from = { has_estate_privilege = estate_jains_monopoly_of_dyes }
2499
+ NOT = { has_province_modifier = estate_jains_monopoly_of_dyes_mod }
2500
+ trade_goods = dyes
2501
+ }
2502
+ remove_province_modifier = estate_jains_monopoly_of_dyes_mod
2503
+ }
2504
+ if = {
2505
+ limit = {
2506
+ has_province_modifier = estate_burghers_monopoly_of_glass_mod
2507
+ NOT = { trade_goods = glass }
2508
+ }
2509
+ remove_province_modifier = estate_burghers_monopoly_of_glass_mod
2510
+ }
2511
+ else_if = {
2512
+ limit = {
2513
+ from = { has_estate_privilege = estate_burghers_monopoly_of_glass }
2514
+ NOT = { has_province_modifier = estate_burghers_monopoly_of_glass_mod }
2515
+ trade_goods = glass
2516
+ }
2517
+ remove_province_modifier = estate_burghers_monopoly_of_glass_mod
2518
+ }
2519
+ if = {
2520
+ limit = {
2521
+ has_province_modifier = estate_vaisyas_monopoly_of_glass_mod
2522
+ NOT = { trade_goods = glass }
2523
+ }
2524
+ remove_province_modifier = estate_vaisyas_monopoly_of_glass_mod
2525
+ }
2526
+ else_if = {
2527
+ limit = {
2528
+ from = { has_estate_privilege = estate_vaisyas_monopoly_of_glass }
2529
+ NOT = { has_province_modifier = estate_vaisyas_monopoly_of_glass_mod }
2530
+ trade_goods = glass
2531
+ }
2532
+ remove_province_modifier = estate_vaisyas_monopoly_of_glass_mod
2533
+ }
2534
+ if = {
2535
+ limit = {
2536
+ has_province_modifier = estate_jains_monopoly_of_glass_mod
2537
+ NOT = { trade_goods = glass }
2538
+ }
2539
+ remove_province_modifier = estate_jains_monopoly_of_glass_mod
2540
+ }
2541
+ else_if = {
2542
+ limit = {
2543
+ from = { has_estate_privilege = estate_jains_monopoly_of_glass }
2544
+ NOT = { has_province_modifier = estate_jains_monopoly_of_glass_mod }
2545
+ trade_goods = glass
2546
+ }
2547
+ remove_province_modifier = estate_jains_monopoly_of_glass_mod
2548
+ }
2549
+ if = {
2550
+ limit = {
2551
+ has_province_modifier = estate_burghers_monopoly_of_paper_mod
2552
+ NOT = { trade_goods = paper }
2553
+ }
2554
+ remove_province_modifier = estate_burghers_monopoly_of_paper_mod
2555
+ }
2556
+ else_if = {
2557
+ limit = {
2558
+ from = { has_estate_privilege = estate_burghers_monopoly_of_paper }
2559
+ NOT = { has_province_modifier = estate_burghers_monopoly_of_paper_mod }
2560
+ trade_goods = paper
2561
+ }
2562
+ remove_province_modifier = estate_burghers_monopoly_of_paper_mod
2563
+ }
2564
+ if = {
2565
+ limit = {
2566
+ has_province_modifier = estate_vaisyas_monopoly_of_paper_mod
2567
+ NOT = { trade_goods = paper }
2568
+ }
2569
+ remove_province_modifier = estate_vaisyas_monopoly_of_paper_mod
2570
+ }
2571
+ else_if = {
2572
+ limit = {
2573
+ from = { has_estate_privilege = estate_vaisyas_monopoly_of_paper }
2574
+ NOT = { has_province_modifier = estate_vaisyas_monopoly_of_paper_mod }
2575
+ trade_goods = paper
2576
+ }
2577
+ remove_province_modifier = estate_vaisyas_monopoly_of_paper_mod
2578
+ }
2579
+ if = {
2580
+ limit = {
2581
+ has_province_modifier = estate_jains_monopoly_of_paper_mod
2582
+ NOT = { trade_goods = paper }
2583
+ }
2584
+ remove_province_modifier = estate_jains_monopoly_of_paper_mod
2585
+ }
2586
+ else_if = {
2587
+ limit = {
2588
+ from = { has_estate_privilege = estate_jains_monopoly_of_paper }
2589
+ NOT = { has_province_modifier = estate_jains_monopoly_of_paper_mod }
2590
+ trade_goods = paper
2591
+ }
2592
+ remove_province_modifier = estate_jains_monopoly_of_paper_mod
2593
+ }
2594
+ if = {
2595
+ limit = {
2596
+ has_province_modifier = estate_church_monopoly_of_incense_mod
2597
+ NOT = { trade_goods = incense }
2598
+ }
2599
+ remove_province_modifier = estate_church_monopoly_of_incense_mod
2600
+ }
2601
+ else_if = {
2602
+ limit = {
2603
+ from = { has_estate_privilege = estate_church_monopoly_of_incense }
2604
+ NOT = { has_province_modifier = estate_church_monopoly_of_incense_mod }
2605
+ trade_goods = incense
2606
+ }
2607
+ remove_province_modifier = estate_church_monopoly_of_incense_mod
2608
+ }
2609
+ if = {
2610
+ limit = {
2611
+ has_province_modifier = estate_brahmins_monopoly_of_incense_mod
2612
+ NOT = { trade_goods = incense }
2613
+ }
2614
+ remove_province_modifier = estate_brahmins_monopoly_of_incense_mod
2615
+ }
2616
+ else_if = {
2617
+ limit = {
2618
+ from = { has_estate_privilege = estate_brahmins_monopoly_of_incense }
2619
+ NOT = { has_province_modifier = estate_brahmins_monopoly_of_incense_mod }
2620
+ trade_goods = incense
2621
+ }
2622
+ remove_province_modifier = estate_brahmins_monopoly_of_incense_mod
2623
+ }
2624
+ if = {
2625
+ limit = {
2626
+ has_province_modifier = estate_church_monopoly_of_wool_mod
2627
+ NOT = { trade_goods = wool }
2628
+ }
2629
+ remove_province_modifier = estate_church_monopoly_of_wool_mod
2630
+ }
2631
+ else_if = {
2632
+ limit = {
2633
+ from = { has_estate_privilege = estate_church_monopoly_of_wool }
2634
+ NOT = { has_province_modifier = estate_church_monopoly_of_wool_mod }
2635
+ trade_goods = wool
2636
+ }
2637
+ remove_province_modifier = estate_church_monopoly_of_wool_mod
2638
+ }
2639
+ if = {
2640
+ limit = {
2641
+ has_province_modifier = estate_brahmins_monopoly_of_wool_mod
2642
+ NOT = { trade_goods = wool }
2643
+ }
2644
+ remove_province_modifier = estate_brahmins_monopoly_of_wool_mod
2645
+ }
2646
+ else_if = {
2647
+ limit = {
2648
+ from = { has_estate_privilege = estate_brahmins_monopoly_of_wool }
2649
+ NOT = { has_province_modifier = estate_brahmins_monopoly_of_wool_mod }
2650
+ trade_goods = wool
2651
+ }
2652
+ remove_province_modifier = estate_brahmins_monopoly_of_wool_mod
2653
+ }
2654
+ if = {
2655
+ limit = {
2656
+ has_province_modifier = estate_church_monopoly_of_wine_mod
2657
+ NOT = { trade_goods = wine }
2658
+ }
2659
+ remove_province_modifier = estate_church_monopoly_of_wine_mod
2660
+ }
2661
+ else_if = {
2662
+ limit = {
2663
+ from = { has_estate_privilege = estate_church_monopoly_of_wine }
2664
+ NOT = { has_province_modifier = estate_church_monopoly_of_wine_mod }
2665
+ trade_goods = wine
2666
+ }
2667
+ remove_province_modifier = estate_church_monopoly_of_wine_mod
2668
+ }
2669
+ if = {
2670
+ limit = {
2671
+ has_province_modifier = estate_church_monopoly_of_slaves_mod
2672
+ NOT = { trade_goods = slaves }
2673
+ }
2674
+ remove_province_modifier = estate_church_monopoly_of_slaves_mod
2675
+ }
2676
+ else_if = {
2677
+ limit = {
2678
+ from = { has_estate_privilege = estate_church_monopoly_of_slaves }
2679
+ NOT = { has_province_modifier = estate_church_monopoly_of_slaves_mod }
2680
+ trade_goods = slaves
2681
+ }
2682
+ remove_province_modifier = estate_church_monopoly_of_slaves_mod
2683
+ }
2684
+ if = {
2685
+ limit = {
2686
+ has_province_modifier = estate_nobles_monopoly_of_metals_mod
2687
+ NOT = { trade_goods = copper }
2688
+ NOT = { trade_goods = iron }
2689
+ }
2690
+ remove_province_modifier = estate_nobles_monopoly_of_metals_mod
2691
+ }
2692
+ else_if = {
2693
+ limit = {
2694
+ from = { has_estate_privilege = estate_nobles_monopoly_of_metals }
2695
+ NOT = { has_province_modifier = estate_nobles_monopoly_of_metals_mod }
2696
+ OR = {
2697
+ trade_goods = copper
2698
+ trade_goods = iron
2699
+ }
2700
+ }
2701
+ remove_province_modifier = estate_nobles_monopoly_of_metals_mod
2702
+ }
2703
+ if = {
2704
+ limit = {
2705
+ has_province_modifier = estate_rajput_monopoly_of_metals_mod
2706
+ NOT = { trade_goods = copper }
2707
+ NOT = { trade_goods = iron }
2708
+ }
2709
+ remove_province_modifier = estate_rajput_monopoly_of_metals_mod
2710
+ }
2711
+ else_if = {
2712
+ limit = {
2713
+ from = { has_estate_privilege = estate_rajput_monopoly_of_metals }
2714
+ NOT = { has_province_modifier = estate_rajput_monopoly_of_metals_mod }
2715
+ OR = {
2716
+ trade_goods = copper
2717
+ trade_goods = iron
2718
+ }
2719
+ }
2720
+ remove_province_modifier = estate_rajput_monopoly_of_metals_mod
2721
+ }
2722
+ if = {
2723
+ limit = {
2724
+ has_province_modifier = estate_maratha_monopoly_of_metals_mod
2725
+ NOT = { trade_goods = copper }
2726
+ NOT = { trade_goods = iron }
2727
+ }
2728
+ remove_province_modifier = estate_maratha_monopoly_of_metals_mod
2729
+ }
2730
+ else_if = {
2731
+ limit = {
2732
+ from = { has_estate_privilege = estate_maratha_monopoly_of_metals }
2733
+ NOT = { has_province_modifier = estate_maratha_monopoly_of_metals_mod }
2734
+ OR = {
2735
+ trade_goods = copper
2736
+ trade_goods = iron
2737
+ }
2738
+ }
2739
+ remove_province_modifier = estate_maratha_monopoly_of_metals_mod
2740
+ }
2741
+ if = {
2742
+ limit = {
2743
+ has_province_modifier = estate_nobles_monopoly_of_livestock_mod
2744
+ NOT = { trade_goods = livestock }
2745
+ }
2746
+ remove_province_modifier = estate_nobles_monopoly_of_livestock_mod
2747
+ }
2748
+ else_if = {
2749
+ limit = {
2750
+ from = { has_estate_privilege = estate_nobles_monopoly_of_livestock }
2751
+ NOT = { has_province_modifier = estate_nobles_monopoly_of_livestock_mod }
2752
+ trade_goods = livestock
2753
+ }
2754
+ remove_province_modifier = estate_nobles_monopoly_of_livestock_mod
2755
+ }
2756
+ if = {
2757
+ limit = {
2758
+ has_province_modifier = estate_rajput_monopoly_of_livestock_mod
2759
+ NOT = { trade_goods = livestock }
2760
+ }
2761
+ remove_province_modifier = estate_rajput_monopoly_of_livestock_mod
2762
+ }
2763
+ else_if = {
2764
+ limit = {
2765
+ from = { has_estate_privilege = estate_rajput_monopoly_of_livestock }
2766
+ NOT = { has_province_modifier = estate_rajput_monopoly_of_livestock_mod }
2767
+ trade_goods = livestock
2768
+ }
2769
+ remove_province_modifier = estate_rajput_monopoly_of_livestock_mod
2770
+ }
2771
+ if = {
2772
+ limit = {
2773
+ has_province_modifier = estate_maratha_monopoly_of_livestock_mod
2774
+ NOT = { trade_goods = livestock }
2775
+ }
2776
+ remove_province_modifier = estate_maratha_monopoly_of_livestock_mod
2777
+ }
2778
+ else_if = {
2779
+ limit = {
2780
+ from = { has_estate_privilege = estate_maratha_monopoly_of_livestock }
2781
+ NOT = { has_province_modifier = estate_maratha_monopoly_of_livestock_mod }
2782
+ trade_goods = livestock
2783
+ }
2784
+ remove_province_modifier = estate_maratha_monopoly_of_livestock_mod
2785
+ }
2786
+ if = {
2787
+ limit = {
2788
+ has_province_modifier = estate_nobles_monopoly_of_gems_mod
2789
+ NOT = { trade_goods = gems }
2790
+ }
2791
+ remove_province_modifier = estate_nobles_monopoly_of_gems_mod
2792
+ }
2793
+ else_if = {
2794
+ limit = {
2795
+ from = { has_estate_privilege = estate_nobles_monopoly_of_gems }
2796
+ NOT = { has_province_modifier = estate_nobles_monopoly_of_gems_mod }
2797
+ trade_goods = gems
2798
+ }
2799
+ remove_province_modifier = estate_nobles_monopoly_of_gems_mod
2800
+ }
2801
+ if = {
2802
+ limit = {
2803
+ has_province_modifier = estate_rajput_monopoly_of_gems_mod
2804
+ NOT = { trade_goods = gems }
2805
+ }
2806
+ remove_province_modifier = estate_rajput_monopoly_of_gems_mod
2807
+ }
2808
+ else_if = {
2809
+ limit = {
2810
+ from = { has_estate_privilege = estate_rajput_monopoly_of_gems }
2811
+ NOT = { has_province_modifier = estate_rajput_monopoly_of_gems_mod }
2812
+ trade_goods = gems
2813
+ }
2814
+ remove_province_modifier = estate_rajput_monopoly_of_gems_mod
2815
+ }
2816
+ if = {
2817
+ limit = {
2818
+ has_province_modifier = estate_maratha_monopoly_of_gems_mod
2819
+ NOT = { trade_goods = gems }
2820
+ }
2821
+ remove_province_modifier = estate_maratha_monopoly_of_gems_mod
2822
+ }
2823
+ else_if = {
2824
+ limit = {
2825
+ from = { has_estate_privilege = estate_maratha_monopoly_of_gems }
2826
+ NOT = { has_province_modifier = estate_maratha_monopoly_of_gems_mod }
2827
+ trade_goods = gems
2828
+ }
2829
+ remove_province_modifier = estate_maratha_monopoly_of_gems_mod
2830
+ }
2831
+ if = {
2832
+ limit = {
2833
+ has_province_modifier = estate_burghers_control_over_gold_mine
2834
+ NOT = { trade_goods = gold }
2835
+ }
2836
+ remove_province_modifier = estate_burghers_control_over_gold_mine
2837
+ }
2838
+ else_if = {
2839
+ limit = {
2840
+ from = { has_estate_privilege = estate_burghers_control_over_the_mint }
2841
+ NOT = { has_province_modifier = estate_burghers_control_over_gold_mine }
2842
+ trade_goods = gold
2843
+ }
2844
+ add_province_modifier = {
2845
+ name = estate_burghers_control_over_gold_mine
2846
+ duration = -1
2847
+ }
2848
+ }
2849
+ }
2850
+
2851
+ on_loan_repaid_estate_privileges_effect = {
2852
+ if = {
2853
+ limit = {
2854
+ has_estate_privilege = estate_burghers_indebted_to_burghers
2855
+ has_estate_loan = no
2856
+ }
2857
+ remove_estate_privilege = estate_burghers_indebted_to_burghers
2858
+ }
2859
+ if = {
2860
+ limit = {
2861
+ has_estate_privilege = estate_jains_indebted_to_jains
2862
+ has_estate_loan = no
2863
+ }
2864
+ remove_estate_privilege = estate_jains_indebted_to_jains
2865
+ }
2866
+ }
2867
+
2868
+
2869
+ on_bi_yearly_pulse_estate_privileges_effect = {
2870
+ if = {
2871
+ limit = {
2872
+ OR = {
2873
+ has_estate_privilege = estate_nobles_supremacy_over_crown
2874
+ has_estate_privilege = estate_brahmins_supremacy_over_crown
2875
+ }
2876
+ NOT = { has_any_active_estate_agenda = yes }
2877
+ }
2878
+ country_event = { id = estate_privileges_and_agendas_events.3 }
2879
+ }
2880
+ }
2881
+
2882
+ on_culture_promoted_estate_privileges_effect = {
2883
+ if = {
2884
+ limit = {
2885
+ OR = {
2886
+ has_estate_privilege = estate_church_one_faith_one_culture
2887
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
2888
+ }
2889
+ }
2890
+ every_owned_province = {
2891
+ limit = {
2892
+ has_province_modifier = estate_church_false_culture
2893
+ OR = {
2894
+ culture_group = ROOT
2895
+ has_owner_accepted_culture = yes
2896
+ }
2897
+ }
2898
+ remove_province_modifier = estate_church_false_culture
2899
+ if = {
2900
+ limit = {
2901
+ owner = {
2902
+ OR = {
2903
+ religion = PREV
2904
+ has_harmonized_with = PREV
2905
+ secondary_religion = PREV
2906
+ }
2907
+ }
2908
+ }
2909
+ add_province_modifier = {
2910
+ name = estate_church_united_faith_and_culture
2911
+ duration = -1
2912
+ }
2913
+ }
2914
+ }
2915
+ }
2916
+ }
2917
+
2918
+ on_culture_demoted_estate_privileges_effect = {
2919
+ if = {
2920
+ limit = {
2921
+ OR = {
2922
+ has_estate_privilege = estate_church_one_faith_one_culture
2923
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
2924
+ }
2925
+ }
2926
+ every_owned_province = {
2927
+ limit = {
2928
+ OR = {
2929
+ NOT = { has_province_modifier = estate_church_false_culture }
2930
+ has_province_modifier = estate_church_united_faith_and_culture
2931
+ }
2932
+ has_owner_accepted_culture = no
2933
+ NOT = { culture_group = ROOT }
2934
+ }
2935
+ add_province_modifier = {
2936
+ name = estate_church_false_culture
2937
+ duration = -1
2938
+ }
2939
+ remove_province_modifier = estate_church_united_faith_and_culture
2940
+ }
2941
+ }
2942
+ }
2943
+
2944
+ on_primary_culture_changed_privileges_effect = {
2945
+ if = {
2946
+ limit = {
2947
+ OR = {
2948
+ has_estate_privilege = estate_church_one_faith_one_culture
2949
+ has_estate_privilege = estate_brahmins_one_faith_one_culture
2950
+ }
2951
+ }
2952
+ every_owned_province = {
2953
+ remove_province_modifier = estate_church_false_culture
2954
+ remove_province_modifier = estate_church_united_faith_and_culture
2955
+ if = {
2956
+ limit = {
2957
+ owner = {
2958
+ OR = {
2959
+ religion = PREV
2960
+ has_harmonized_with = PREV
2961
+ secondary_religion = PREV
2962
+ }
2963
+ }
2964
+ OR = {
2965
+ has_owner_accepted_culture = yes
2966
+ culture_group = ROOT
2967
+ }
2968
+ }
2969
+ add_province_modifier = {
2970
+ name = estate_church_united_faith_and_culture
2971
+ duration = -1
2972
+ }
2973
+ }
2974
+ else_if = {
2975
+ limit = {
2976
+ has_province_modifier = estate_church_united_faith_and_culture
2977
+ }
2978
+ remove_province_modifier = estate_church_united_faith_and_culture
2979
+ }
2980
+ if = {
2981
+ limit = {
2982
+ NOT = { culture_group = ROOT }
2983
+ has_owner_accepted_culture = no
2984
+ }
2985
+ add_province_modifier = {
2986
+ name = estate_church_false_culture
2987
+ duration = -1
2988
+ }
2989
+ }
2990
+ else_if = {
2991
+ limit = {
2992
+ has_province_modifier = estate_church_false_culture
2993
+ }
2994
+ remove_province_modifier = estate_church_false_culture
2995
+ }
2996
+ }
2997
+ }
2998
+ }
2999
+
3000
+ reapply_estate_privilege = {
3001
+ # privilege: The privilege we want to reapply
3002
+ if = {
3003
+ limit = {
3004
+ can_revoke_estate_privilege = $privilege$
3005
+ }
3006
+ hidden_effect = {
3007
+ remove_estate_privilege = $privilege$
3008
+ }
3009
+ set_estate_privilege = $privilege$
3010
+ }
3011
+ }
3012
+ scaled_estate_church_land_share_effect = {
3013
+ scaled_estate_land_share_add_effect = { estate = estate_church }
3014
+ }
3015
+
3016
+ scaled_estate_church_negative_land_share_effect = {
3017
+ scaled_estate_land_share_reduce_effect = { estate = estate_church }
3018
+ }
3019
+
3020
+ scaled_estate_nobles_land_share_effect = {
3021
+ scaled_estate_land_share_add_effect = { estate = estate_nobles }
3022
+ }
3023
+
3024
+ scaled_estate_nobles_negative_land_share_effect = {
3025
+ scaled_estate_land_share_reduce_effect = { estate = estate_nobles }
3026
+ }
3027
+
3028
+ scaled_estate_burghers_land_share_effect = {
3029
+ scaled_estate_land_share_add_effect = { estate = estate_burghers }
3030
+ }
3031
+
3032
+ scaled_estate_burghers_negative_land_share_effect = {
3033
+ scaled_estate_land_share_reduce_effect = { estate = estate_burghers }
3034
+ }
3035
+
3036
+ scaled_estate_rajput_land_share_effect = {
3037
+ scaled_estate_land_share_add_effect = { estate = estate_rajput }
3038
+ }
3039
+
3040
+ scaled_estate_rajput_negative_land_share_effect = {
3041
+ scaled_estate_land_share_reduce_effect = { estate = estate_rajput }
3042
+ }
3043
+
3044
+ scaled_estate_maratha_land_share_effect = {
3045
+ scaled_estate_land_share_add_effect = { estate = estate_maratha }
3046
+ }
3047
+
3048
+ scaled_estate_maratha_negative_land_share_effect = {
3049
+ scaled_estate_land_share_reduce_effect = { estate = estate_maratha }
3050
+ }
3051
+
3052
+ scaled_estate_brahmins_land_share_effect = {
3053
+ scaled_estate_land_share_add_effect = { estate = estate_brahmins }
3054
+ }
3055
+
3056
+ scaled_estate_brahmins_negative_land_share_effect = {
3057
+ scaled_estate_land_share_reduce_effect = { estate = estate_brahmins }
3058
+ }
3059
+
3060
+ scaled_estate_vaisyas_land_share_effect = {
3061
+ scaled_estate_land_share_add_effect = { estate = estate_vaisyas }
3062
+ }
3063
+
3064
+ scaled_estate_vaisyas_negative_land_share_effect = {
3065
+ scaled_estate_land_share_reduce_effect = { estate = estate_vaisyas }
3066
+ }
3067
+
3068
+ scaled_estate_dhimmi_land_share_effect = {
3069
+ scaled_estate_land_share_add_effect = { estate = estate_dhimmi }
3070
+ }
3071
+
3072
+ scaled_estate_dhimmi_negative_land_share_effect = {
3073
+ scaled_estate_land_share_reduce_effect = { estate = estate_dhimmi }
3074
+ }
3075
+
3076
+ scaled_estate_cossacks_land_share_effect = {
3077
+ scaled_estate_land_share_add_effect = { estate = estate_cossacks }
3078
+ }
3079
+
3080
+ scaled_estate_cossacks = {
3081
+ scaled_estate_land_share_reduce_effect = { estate = estate_cossacks }
3082
+ }
3083
+
3084
+ scaled_estate_jains_land_share_effect = {
3085
+ scaled_estate_land_share_add_effect = { estate = estate_jains }
3086
+ }
3087
+
3088
+ scaled_estate_jains = {
3089
+ scaled_estate_land_share_reduce_effect = { estate = estate_jains }
3090
+ }
3091
+
3092
+ scaled_estate_nomadic_tribes_land_share_effect = {
3093
+ scaled_estate_land_share_add_effect = { estate = estate_nomadic_tribes }
3094
+ }
3095
+
3096
+ scaled_estate_nomadic_tribes = {
3097
+ scaled_estate_land_share_reduce_effect = { estate = estate_nomadic_tribes }
3098
+ }
3099
+
3100
+ scaled_estate_janissaries_land_share_effect = {
3101
+ scaled_estate_land_share_add_effect = { estate = estate_janissaries }
3102
+ }
3103
+
3104
+ scaled_estate_janissaries = {
3105
+ scaled_estate_land_share_reduce_effect = { estate = estate_janissaries }
3106
+ }
3107
+
3108
+ scaled_estate_eunuchs_land_share_effect = {
3109
+ scaled_estate_land_share_add_effect = { estate = estate_eunuchs }
3110
+ }
3111
+
3112
+ scaled_estate_eunuchs = {
3113
+ scaled_estate_land_share_reduce_effect = { estate = estate_eunuchs }
3114
+ }
3115
+
3116
+ scaled_estate_qizilbash_land_share_effect = {
3117
+ scaled_estate_land_share_add_effect = { estate = estate_qizilbash }
3118
+ }
3119
+
3120
+ scaled_estate_qizilbash = {
3121
+ scaled_estate_land_share_reduce_effect = { estate = estate_qizilbash }
3122
+ }
3123
+
3124
+ scaled_estate_ghulams_land_share_effect = {
3125
+ scaled_estate_land_share_add_effect = { estate = estate_ghulams }
3126
+ }
3127
+
3128
+ scaled_estate_ghulams = {
3129
+ scaled_estate_land_share_reduce_effect = { estate = estate_ghulams }
3130
+ }
3131
+
3132
+ #Based on those above, but you can choose which estate you use
3133
+ #example of usage: scaled_estate_land_share_add_effect = { estate = estate_nobles }
3134
+ scaled_estate_land_share_add_effect = {
3135
+ if = {
3136
+ limit = {
3137
+ NOT = { total_development = 50 }
3138
+ }
3139
+ give_estate_land_share_large = { estate = $estate$ }
3140
+ }
3141
+ else_if = {
3142
+ limit = {
3143
+ total_development = 50
3144
+ NOT = { total_development = 100 }
3145
+ }
3146
+ give_estate_land_share_medium = { estate = $estate$ }
3147
+ }
3148
+ else_if = {
3149
+ limit = {
3150
+ total_development = 100
3151
+ }
3152
+ give_estate_land_share_small = { estate = $estate$ }
3153
+ }
3154
+ }
3155
+
3156
+ #example of usage: scaled_estate_land_share_reduce_effect = { estate = estate_nobles }
3157
+ scaled_estate_land_share_reduce_effect = {
3158
+ if = {
3159
+ limit = {
3160
+ NOT = { total_development = 50 }
3161
+ }
3162
+ take_estate_land_share_large = { estate = $estate$ }
3163
+ }
3164
+ else_if = {
3165
+ limit = {
3166
+ total_development = 50
3167
+ NOT = { total_development = 100 }
3168
+ }
3169
+ give_estate_land_share_medium = { estate = $estate$ }
3170
+ }
3171
+ else_if = {
3172
+ limit = {
3173
+ total_development = 100
3174
+ }
3175
+ give_estate_land_share_small = { estate = $estate$ }
3176
+ }
3177
+ }
3178
+
3179
+ # Expects country scope
3180
+ seize_land_effect = {
3181
+ hidden_effect = {
3182
+ set_variable = {
3183
+ which = seize_land_effect_variable
3184
+ value = $scale$
3185
+ }
3186
+ while = {
3187
+ limit = {
1604
3188
  check_variable = {
1605
3189
  which = seize_land_effect_variable
1606
3190
  value = 1
1607
3191
  }
1608
3192
  }
1609
- change_variable = {
1610
- which = seize_land_effect_variable
1611
- value = -1
3193
+ change_variable = {
3194
+ which = seize_land_effect_variable
3195
+ value = -1
3196
+ }
3197
+ if = {
3198
+ limit = {
3199
+ any_owned_province = {
3200
+ OR = {
3201
+ is_in_capital_area = yes
3202
+ is_state_core = root
3203
+ }
3204
+ is_capital = no
3205
+ NOT = {
3206
+ area_for_scope_province = {
3207
+ owned_by = root
3208
+ has_province_flag = seize_land_spawn_unrest_and_rebels
3209
+ }
3210
+ }
3211
+ area_for_scope_province = {
3212
+ any_neighbor_province = {
3213
+ owned_by = root
3214
+ has_province_flag = seize_land_spawn_unrest_and_rebels
3215
+ }
3216
+ }
3217
+ }
3218
+ }
3219
+ random_owned_province = {
3220
+ limit = {
3221
+ OR = {
3222
+ is_in_capital_area = yes
3223
+ is_state_core = root
3224
+ }
3225
+ is_capital = no
3226
+ NOT = {
3227
+ area_for_scope_province = {
3228
+ owned_by = root
3229
+ has_province_flag = seize_land_spawn_unrest_and_rebels
3230
+ }
3231
+ }
3232
+ area_for_scope_province = {
3233
+ any_neighbor_province = {
3234
+ owned_by = root
3235
+ has_province_flag = seize_land_spawn_unrest_and_rebels
3236
+ }
3237
+ }
3238
+ highest_supply_limit_in_area = yes
3239
+ }
3240
+ spawn_rebels_from_unhappy_estate = { size = 2 }
3241
+ area = {
3242
+ limit = {
3243
+ owned_by = ROOT
3244
+ }
3245
+ set_province_flag = seize_land_spawn_unrest_and_rebels
3246
+ if = {
3247
+ limit = {
3248
+ NOT = { has_province_flag = has_estate_unrest_flag }
3249
+ }
3250
+ add_named_unrest = { name = estate_land_seized value = 10 }
3251
+ set_province_flag = has_estate_unrest_flag
3252
+ }
3253
+ }
3254
+ }
3255
+ }
3256
+ else = {
3257
+ random_owned_province = {
3258
+ limit = {
3259
+ OR = {
3260
+ is_in_capital_area = yes
3261
+ is_state_core = root
3262
+ }
3263
+ NOT = {
3264
+ area_for_scope_province = {
3265
+ owned_by = root
3266
+ has_province_flag = seize_land_spawn_unrest_and_rebels
3267
+ }
3268
+ }
3269
+ highest_supply_limit_in_area = yes
3270
+ }
3271
+ spawn_rebels_from_unhappy_estate = { size = 2 }
3272
+ area = {
3273
+ limit = {
3274
+ owned_by = ROOT
3275
+ }
3276
+ set_province_flag = seize_land_spawn_unrest_and_rebels
3277
+ if = {
3278
+ limit = {
3279
+ NOT = { has_province_flag = has_estate_unrest_flag }
3280
+ }
3281
+ add_named_unrest = { name = estate_land_seized value = 10 }
3282
+ set_province_flag = has_estate_unrest_flag
3283
+ }
3284
+ }
3285
+ }
3286
+ }
3287
+ }
3288
+ every_owned_province = {
3289
+ limit = { has_province_flag = seize_land_spawn_unrest_and_rebels }
3290
+ clr_province_flag = seize_land_spawn_unrest_and_rebels
3291
+ }
3292
+ }
3293
+ }
3294
+
3295
+ spawn_rebels_from_unhappy_estate = {
3296
+ if = {
3297
+ limit = {
3298
+ owner = {
3299
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = all } }
3300
+ NOT = { has_government_attribute = seizing_land_no_rebels }
3301
+ }
3302
+ }
3303
+ random_list = {
3304
+ 1 = {
3305
+ trigger = {
3306
+ owner = {
3307
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_nobles } }
3308
+ has_estate = estate_nobles
3309
+ NOT = {
3310
+ estate_loyalty = {
3311
+ estate = estate_nobles
3312
+ loyalty = 30
3313
+ }
3314
+ }
3315
+ }
3316
+ }
3317
+ if = {
3318
+ limit = {
3319
+ owner = {
3320
+ OR = {
3321
+ primary_culture = polish
3322
+ primary_culture = polish_new
3323
+ }
3324
+ }
3325
+ }
3326
+ spawn_rebels = {
3327
+ type = polish_noble_rebels
3328
+ size = $size$
3329
+ estate = estate_nobles
3330
+ as_if_faction = yes
3331
+ }
3332
+ }
3333
+ else = {
3334
+ spawn_rebels = {
3335
+ type = noble_rebels
3336
+ size = $size$
3337
+ estate = estate_nobles
3338
+ as_if_faction = yes
3339
+ }
3340
+ }
3341
+ }
3342
+ 1 = {
3343
+ trigger = {
3344
+ owner = {
3345
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_church } }
3346
+ has_estate = estate_church
3347
+ NOT = {
3348
+ estate_loyalty = {
3349
+ estate = estate_church
3350
+ loyalty = 30
3351
+ }
3352
+ }
3353
+ }
3354
+ }
3355
+ owner = {
3356
+ trigger_switch = {
3357
+ on_trigger = religion
3358
+ anglican = { PREV = { spawn_rebels = { type = anglican_rebels size = $size$ as_if_faction = yes } } }
3359
+ hussite = { PREV = { spawn_rebels = { type = hussite_rebels size = $size$ as_if_faction = yes } } }
3360
+ animism = { PREV = { spawn_rebels = { type = animism_rebels size = $size$ as_if_faction = yes } } }
3361
+ buddhism = { PREV = { spawn_rebels = { type = buddhism_rebels size = $size$ as_if_faction = yes } } }
3362
+ catholic = { PREV = { spawn_rebels = { type = catholic_rebels size = $size$ as_if_faction = yes } } }
3363
+ confucianism = { PREV = { spawn_rebels = { type = confucianism_rebels size = $size$ as_if_faction = yes } } }
3364
+ coptic = { PREV = { spawn_rebels = { type = coptic_rebels size = $size$ as_if_faction = yes } } }
3365
+ hinduism = { PREV = { spawn_rebels = { type = hinduism_rebels size = $size$ as_if_faction = yes } } }
3366
+ ibadi = { PREV = { spawn_rebels = { type = ibadi_rebels size = $size$ as_if_faction = yes } } }
3367
+ inti = { PREV = { spawn_rebels = { type = inti_rebels size = $size$ as_if_faction = yes } } }
3368
+ jewish = { PREV = { spawn_rebels = { type = jewish_rebels size = $size$ as_if_faction = yes } } }
3369
+ mahayana = { PREV = { spawn_rebels = { type = mahayana_rebels size = $size$ as_if_faction = yes } } }
3370
+ mesoamerican_religion = { PREV = { spawn_rebels = { type = maya_rebels size = $size$ as_if_faction = yes } } }
3371
+ nahuatl = { PREV = { spawn_rebels = { type = nahuatl_rebels size = $size$ as_if_faction = yes } } }
3372
+ norse_pagan_reformed = { PREV = { spawn_rebels = { type = norse_pagan_reformed_rebels size = $size$ as_if_faction = yes } } }
3373
+ orthodox = { PREV = { spawn_rebels = { type = orthodox_rebels size = $size$ as_if_faction = yes } } }
3374
+ protestant = { PREV = { spawn_rebels = { type = protestant_rebels size = $size$ as_if_faction = yes } } }
3375
+ reformed = { PREV = { spawn_rebels = { type = reformed_rebels size = $size$ as_if_faction = yes } } }
3376
+ shamanism = { PREV = { spawn_rebels = { type = shamanism_rebels size = $size$ as_if_faction = yes } } }
3377
+ shiite = { PREV = { spawn_rebels = { type = shiite_rebels size = $size$ as_if_faction = yes } } }
3378
+ shinto = { PREV = { spawn_rebels = { type = shinto_rebels size = $size$ as_if_faction = yes } } }
3379
+ sikhism = { PREV = { spawn_rebels = { type = sikhism_rebels size = $size$ as_if_faction = yes } } }
3380
+ sunni = { PREV = { spawn_rebels = { type = sunni_rebels size = $size$ as_if_faction = yes } } }
3381
+ tengri_pagan_reformed = { PREV = { spawn_rebels = { type = tengri_pagan_reformed_rebels size = $size$ as_if_faction = yes } } }
3382
+ totemism = { PREV = { spawn_rebels = { type = totemism_rebels size = $size$ as_if_faction = yes } } }
3383
+ vajrayana = { PREV = { spawn_rebels = { type = vajrayana_rebels size = $size$ as_if_faction = yes } } }
3384
+ zoroastrian = { PREV = { spawn_rebels = { type = zoroastrian_rebels size = $size$ as_if_faction = yes } } }
3385
+ dreamtime = { PREV = { spawn_rebels = { type = dreamtime_rebels size = $size$ as_if_faction = yes } } }
3386
+ }
3387
+ }
3388
+ }
3389
+ 1 = {
3390
+ trigger = {
3391
+ owner = {
3392
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_rajput } }
3393
+ has_estate = estate_rajput
3394
+ NOT = {
3395
+ estate_loyalty = {
3396
+ estate = estate_rajput
3397
+ loyalty = 30
3398
+ }
3399
+ }
3400
+ }
3401
+ }
3402
+ spawn_rebels = {
3403
+ type = noble_rebels
3404
+ size = $size$
3405
+ estate = estate_rajput
3406
+ as_if_faction = yes
3407
+ }
3408
+ }
3409
+ 1 = {
3410
+ trigger = {
3411
+ owner = {
3412
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_maratha } }
3413
+ has_estate = estate_maratha
3414
+ NOT = {
3415
+ estate_loyalty = {
3416
+ estate = estate_maratha
3417
+ loyalty = 30
3418
+ }
3419
+ }
3420
+ }
3421
+ }
3422
+ spawn_rebels = {
3423
+ type = noble_rebels
3424
+ size = $size$
3425
+ estate = estate_maratha
3426
+ as_if_faction = yes
3427
+ }
3428
+ }
3429
+ 1 = {
3430
+ trigger = {
3431
+ owner = {
3432
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_burghers } }
3433
+ has_estate = estate_burghers
3434
+ NOT = {
3435
+ estate_loyalty = {
3436
+ estate = estate_burghers
3437
+ loyalty = 30
3438
+ }
3439
+ }
3440
+ }
3441
+ }
3442
+ spawn_rebels = {
3443
+ type = particularist_rebels
3444
+ size = $size$
3445
+ estate = estate_burghers
3446
+ as_if_faction = yes
3447
+ }
3448
+ }
3449
+ 1 = {
3450
+ trigger = {
3451
+ owner = {
3452
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_jains } }
3453
+ has_estate = estate_jains
3454
+ NOT = {
3455
+ estate_loyalty = {
3456
+ estate = estate_jains
3457
+ loyalty = 30
3458
+ }
3459
+ }
3460
+ }
3461
+ }
3462
+ spawn_rebels = {
3463
+ type = particularist_rebels
3464
+ size = $size$
3465
+ estate = estate_jains
3466
+ as_if_faction = yes
3467
+ }
3468
+ }
3469
+ 1 = {
3470
+ trigger = {
3471
+ owner = {
3472
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_vaisyas } }
3473
+ has_estate = estate_vaisyas
3474
+ NOT = {
3475
+ estate_loyalty = {
3476
+ estate = estate_vaisyas
3477
+ loyalty = 30
3478
+ }
3479
+ }
3480
+ }
3481
+ }
3482
+ spawn_rebels = {
3483
+ type = particularist_rebels
3484
+ size = $size$
3485
+ estate = estate_vaisyas
3486
+ as_if_faction = yes
3487
+ }
3488
+ }
3489
+ 1 = {
3490
+ trigger = {
3491
+ owner = {
3492
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_dhimmi } }
3493
+ has_estate = estate_dhimmi
3494
+ NOT = {
3495
+ estate_loyalty = {
3496
+ estate = estate_dhimmi
3497
+ loyalty = 30
3498
+ }
3499
+ }
3500
+ }
3501
+ }
3502
+ spawn_rebels = {
3503
+ type = particularist_rebels
3504
+ size = $size$
3505
+ estate = estate_dhimmi
3506
+ as_if_faction = yes
3507
+ }
3508
+ }
3509
+ 1 = {
3510
+ trigger = {
3511
+ owner = {
3512
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_brahmins } }
3513
+ has_estate = estate_brahmins
3514
+ NOT = {
3515
+ estate_loyalty = {
3516
+ estate = estate_brahmins
3517
+ loyalty = 30
3518
+ }
3519
+ }
3520
+ }
3521
+ }
3522
+ spawn_rebels = {
3523
+ type = hinduism_rebels
3524
+ size = $size$
3525
+ estate = estate_brahmins
3526
+ as_if_faction = yes
3527
+ }
3528
+ }
3529
+ 1 = {
3530
+ trigger = {
3531
+ owner = {
3532
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_cossacks } }
3533
+ has_estate = estate_cossacks
3534
+ NOT = {
3535
+ estate_loyalty = {
3536
+ estate = estate_cossacks
3537
+ loyalty = 30
3538
+ }
3539
+ }
3540
+ }
3541
+ }
3542
+ spawn_rebels = {
3543
+ type = cossack_rebels
3544
+ size = $size$
3545
+ estate = estate_cossacks
3546
+ as_if_faction = yes
3547
+ }
3548
+ }
3549
+ 1 = {
3550
+ trigger = {
3551
+ owner = {
3552
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_nomadic_tribes } }
3553
+ has_estate = estate_nomadic_tribes
3554
+ NOT = {
3555
+ estate_loyalty = {
3556
+ estate = estate_nomadic_tribes
3557
+ loyalty = 30
3558
+ }
3559
+ }
3560
+ }
3561
+ }
3562
+ spawn_rebels = {
3563
+ type = tribal_rebels
3564
+ size = $size$
3565
+ estate = estate_nomadic_tribes
3566
+ as_if_faction = yes
3567
+ }
3568
+ }
3569
+ 1 = {
3570
+ trigger = {
3571
+ owner = {
3572
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_janissaries } }
3573
+ has_estate = estate_janissaries
3574
+ NOT = {
3575
+ estate_loyalty = {
3576
+ estate = estate_janissaries
3577
+ loyalty = 30
3578
+ }
3579
+ }
3580
+ }
3581
+ }
3582
+ spawn_rebels = {
3583
+ type = janissary_rebels
3584
+ size = $size$
3585
+ estate = estate_janissaries
3586
+ as_if_faction = yes
3587
+ }
3588
+ }
3589
+ 1 = {
3590
+ trigger = {
3591
+ owner = {
3592
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_eunuchs } }
3593
+ has_estate = estate_eunuchs
3594
+ NOT = {
3595
+ estate_loyalty = {
3596
+ estate = estate_eunuchs
3597
+ loyalty = 30
3598
+ }
3599
+ }
3600
+ }
3601
+ }
3602
+ spawn_rebels = {
3603
+ type = eunuch_rebels
3604
+ size = $size$
3605
+ estate = estate_eunuchs
3606
+ as_if_faction = yes
3607
+ }
3608
+ }
3609
+ 1 = {
3610
+ trigger = {
3611
+ owner = {
3612
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_qizilbash } }
3613
+ has_estate = estate_qizilbash
3614
+ NOT = {
3615
+ estate_loyalty = {
3616
+ estate = estate_qizilbash
3617
+ loyalty = 30
3618
+ }
3619
+ }
3620
+ }
3621
+ }
3622
+ spawn_rebels = {
3623
+ type = qizilbash_rebels
3624
+ size = $size$
3625
+ estate = estate_qizilbash
3626
+ as_if_faction = yes
3627
+ }
3628
+ }
3629
+ 1 = {
3630
+ trigger = {
3631
+ owner = {
3632
+ NOT = { disabled_rebels_from_seized_land_for_estate = { estate = estate_ghulams } }
3633
+ has_estate = estate_ghulams
3634
+ NOT = {
3635
+ estate_loyalty = {
3636
+ estate = estate_ghulams
3637
+ loyalty = 30
3638
+ }
3639
+ }
3640
+ }
3641
+ }
3642
+ spawn_rebels = {
3643
+ type = ghulams_rebels
3644
+ size = $size$
3645
+ estate = estate_ghulams
3646
+ as_if_faction = yes
3647
+ }
3648
+ }
3649
+ }
3650
+ }
3651
+ }
3652
+
3653
+ pick_random_estate_if_present = {
3654
+ random_list = {
3655
+ 1 = {
3656
+ trigger = {
3657
+ has_estate = estate_brahmins
3658
+ NOT = { has_country_flag = estate_brahmins_$flag$ }
3659
+ }
3660
+ set_country_flag = estate_brahmins_$flag$
3661
+ [[estate_action]
3662
+ $estate_action$ = estate_brahmins
3663
+ ]
3664
+ }
3665
+ 1 = {
3666
+ trigger = {
3667
+ has_estate = estate_church
3668
+ NOT = { has_country_flag = estate_church_$flag$ }
3669
+ }
3670
+ set_country_flag = estate_church_$flag$
3671
+ [[estate_action]
3672
+ $estate_action$ = estate_church
3673
+ ]
3674
+ }
3675
+ 1 = {
3676
+ trigger = {
3677
+ has_estate = estate_maratha
3678
+ NOT = { has_country_flag = estate_maratha_$flag$ }
3679
+ }
3680
+ set_country_flag = estate_maratha_$flag$
3681
+ [[estate_action]
3682
+ $estate_action$ = estate_maratha
3683
+ ]
3684
+ }
3685
+ 1 = {
3686
+ trigger = {
3687
+ has_estate = estate_nobles
3688
+ NOT = { has_country_flag = estate_nobles_$flag$ }
3689
+ }
3690
+ set_country_flag = estate_nobles_$flag$
3691
+ [[estate_action]
3692
+ $estate_action$ = estate_nobles
3693
+ ]
3694
+ }
3695
+ 1 = {
3696
+ trigger = {
3697
+ has_estate = estate_burghers
3698
+ NOT = { has_country_flag = estate_burghers_$flag$ }
3699
+ }
3700
+ set_country_flag = estate_burghers_$flag$
3701
+ [[estate_action]
3702
+ $estate_action$ = estate_burghers
3703
+ ]
3704
+ }
3705
+ 1 = {
3706
+ trigger = {
3707
+ has_estate = estate_vaisyas
3708
+ NOT = { has_country_flag = estate_vaisyas_$flag$ }
3709
+ }
3710
+ set_country_flag = estate_vaisyas_$flag$
3711
+ [[estate_action]
3712
+ $estate_action$ = estate_vaisyas
3713
+ ]
3714
+ }
3715
+ 1 = {
3716
+ trigger = {
3717
+ has_estate = estate_cossacks
3718
+ NOT = { has_country_flag = estate_cossacks_$flag$ }
3719
+ }
3720
+ set_country_flag = estate_cossacks_$flag$
3721
+ [[estate_action]
3722
+ $estate_action$ = estate_cossacks
3723
+ ]
3724
+ }
3725
+ 1 = {
3726
+ trigger = {
3727
+ has_estate = estate_nomadic_tribes
3728
+ NOT = { has_country_flag = estate_nomadic_tribes_$flag$ }
3729
+ }
3730
+ set_country_flag = estate_nomadic_tribes_$flag$
3731
+ [[estate_action]
3732
+ $estate_action$ = estate_nomadic_tribes
3733
+ ]
3734
+ }
3735
+ 1 = {
3736
+ trigger = {
3737
+ has_estate = estate_dhimmi
3738
+ NOT = { has_country_flag = estate_dhimmi_$flag$ }
3739
+ }
3740
+ set_country_flag = estate_dhimmi_$flag$
3741
+ [[estate_action]
3742
+ $estate_action$ = estate_dhimmi
3743
+ ]
3744
+ }
3745
+ 1 = {
3746
+ trigger = {
3747
+ has_estate = estate_jains
3748
+ NOT = { has_country_flag = estate_jains_$flag$ }
3749
+ }
3750
+ set_country_flag = estate_jains_$flag$
3751
+ [[estate_action]
3752
+ $estate_action$ = estate_jains
3753
+ ]
3754
+ }
3755
+ 1 = {
3756
+ trigger = {
3757
+ has_estate = estate_rajput
3758
+ NOT = { has_country_flag = estate_rajput_$flag$ }
3759
+ }
3760
+ set_country_flag = estate_rajput_$flag$
3761
+ [[estate_action]
3762
+ $estate_action$ = estate_rajput
3763
+ ]
3764
+ }
3765
+ 1 = {
3766
+ trigger = {
3767
+ has_estate = estate_janissaries
3768
+ NOT = { has_country_flag = estate_janissaries_$flag$ }
3769
+ }
3770
+ set_country_flag = estate_janissaries_$flag$
3771
+ [[estate_action]
3772
+ $estate_action$ = estate_janissaries
3773
+ ]
3774
+ }
3775
+ 1 = {
3776
+ trigger = {
3777
+ has_estate = estate_eunuchs
3778
+ NOT = { has_country_flag = estate_eunuchs_$flag$ }
3779
+ }
3780
+ set_country_flag = estate_eunuchs_$flag$
3781
+ [[estate_action]
3782
+ $estate_action$ = estate_eunuchs
3783
+ ]
3784
+ }
3785
+ 1 = {
3786
+ trigger = {
3787
+ has_estate = estate_qizilbash
3788
+ NOT = { has_country_flag = estate_qizilbash_$flag$ }
3789
+ }
3790
+ set_country_flag = estate_qizilbash_$flag$
3791
+ [[estate_action]
3792
+ $estate_action$ = estate_qizilbash
3793
+ ]
3794
+ }
3795
+ 1 = {
3796
+ trigger = {
3797
+ has_estate = estate_ghulams
3798
+ NOT = { has_country_flag = estate_ghulams_$flag$ }
3799
+ }
3800
+ set_country_flag = estate_ghulams_$flag$
3801
+ [[estate_action]
3802
+ $estate_action$ = estate_ghulams
3803
+ ]
3804
+ }
3805
+ }
3806
+ }
3807
+
3808
+ seize_land_estate_effect = {
3809
+ take_estate_land_share_massive = { estate = $estate$ }
3810
+ if = {
3811
+ limit = {
3812
+ has_government_attribute = seizing_land_loyalty
3813
+ }
3814
+ add_estate_loyalty = {
3815
+ estate = $estate$
3816
+ loyalty = -15
3817
+ short = yes
3818
+ }
3819
+ }
3820
+ else = {
3821
+ add_estate_loyalty = {
3822
+ estate = $estate$
3823
+ loyalty = -20
3824
+ short = yes
3825
+ }
3826
+ }
3827
+ if = {
3828
+ limit = { NOT = { has_government_attribute = seizing_land_no_rebels } }
3829
+ custom_tooltip = seize_land_rebels_tt
3830
+ }
3831
+ if = {
3832
+ limit = {
3833
+ NOT = {
3834
+ estate_loyalty = {
3835
+ estate = $estate$
3836
+ loyalty = 50
3837
+ }
3838
+ }
3839
+ estate_loyalty = {
3840
+ estate = $estate$
3841
+ loyalty = 30
3842
+ }
3843
+ }
3844
+ }
3845
+ else_if = {
3846
+ limit = {
3847
+ NOT = {
3848
+ estate_loyalty = {
3849
+ estate = $estate$
3850
+ loyalty = 30
3851
+ }
3852
+ }
3853
+ estate_influence = {
3854
+ estate = $estate$
3855
+ influence = 1
3856
+ }
3857
+ }
3858
+ spawn_rebels_seize_land_switch = yes
3859
+ }
3860
+ }
3861
+
3862
+ # estate = what estate
3863
+ # Will give the estate 1% land
3864
+ give_estate_land_share_small = {
3865
+ change_estate_land_share = {
3866
+ estate = $estate$
3867
+ share = 1
3868
+ }
3869
+ }
3870
+
3871
+ # estate = what estate
3872
+ # Will give the estate 2% land
3873
+ give_estate_land_share_medium = {
3874
+ change_estate_land_share = {
3875
+ estate = $estate$
3876
+ share = 2
3877
+ }
3878
+ }
3879
+
3880
+ # estate = what estate
3881
+ # Will give the estate 3% land
3882
+ give_estate_land_share_large = {
3883
+ change_estate_land_share = {
3884
+ estate = $estate$
3885
+ share = 3
3886
+ }
3887
+ }
3888
+
3889
+ # estate = what estate
3890
+ # Will give the estate 5% land
3891
+ give_estate_land_share_massive = {
3892
+ change_estate_land_share = {
3893
+ estate = $estate$
3894
+ share = 5
3895
+ }
3896
+ }
3897
+
3898
+ # estate = what estate
3899
+ # Will give the estate 10% land
3900
+ give_estate_land_share_gigantic = {
3901
+ change_estate_land_share = {
3902
+ estate = $estate$
3903
+ share = 10
3904
+ }
3905
+ }
3906
+
3907
+ give_estate_land_share_init = {
3908
+ change_estate_land_share = {
3909
+ estate = $estate$
3910
+ share = 20
3911
+ }
3912
+ }
3913
+
3914
+ # estate = what estate
3915
+ # Will take the 1% land from estate
3916
+ take_estate_land_share_small = {
3917
+ change_estate_land_share = {
3918
+ estate = $estate$
3919
+ share = -1
3920
+ }
3921
+ }
3922
+
3923
+ # estate = what estate
3924
+ # Will take away 2% land from estate
3925
+ take_estate_land_share_medium = {
3926
+ change_estate_land_share = {
3927
+ estate = $estate$
3928
+ share = -2
3929
+ }
3930
+ }
3931
+
3932
+ # estate = what estate
3933
+ # Will take the 3% land from estate
3934
+ take_estate_land_share_large = {
3935
+ change_estate_land_share = {
3936
+ estate = $estate$
3937
+ share = -3
3938
+ }
3939
+ }
3940
+
3941
+ # estate = what estate
3942
+ # Will take the 5% land from estate
3943
+ take_estate_land_share_massive = {
3944
+ change_estate_land_share = {
3945
+ estate = $estate$
3946
+ share = -5
3947
+ }
3948
+ }
3949
+
3950
+ # estate = what estate
3951
+ # Will take the 10% land from estate
3952
+ take_estate_land_share_gigantic = {
3953
+ change_estate_land_share = {
3954
+ estate = $estate$
3955
+ share = -10
3956
+ }
3957
+ }
3958
+
3959
+ # Used to apply estate monopoly modifier based on the estate privilege name
3960
+ # privilege = name of privilege
3961
+ apply_estate_monopoly_modifier = {
3962
+ if = {
3963
+ limit = { owner = { has_estate_privilege = $privilege$ } }
3964
+ add_province_modifier = {
3965
+ name = $privilege$_mod
3966
+ duration = -1
3967
+ }
3968
+ }
3969
+ }
3970
+
3971
+ remove_estate_monopoly_modifier = {
3972
+ remove_province_modifier = $privilege$_mod
3973
+ }
3974
+
3975
+ re_add_loyalty_from_seized_land = {
3976
+ hidden_effect = {
3977
+ if = {
3978
+ limit = {
3979
+ has_government_attribute = seizing_land_loyalty
3980
+ }
3981
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_nobles } } add_estate_loyalty = { estate = estate_nobles loyalty = 15 } }
3982
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_brahmins } } add_estate_loyalty = { estate = estate_brahmins loyalty = 15 } }
3983
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_burghers } } add_estate_loyalty = { estate = estate_burghers loyalty = 15 } }
3984
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_church } } add_estate_loyalty = { estate = estate_church loyalty = 15 } }
3985
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_cossacks } } add_estate_loyalty = { estate = estate_cossacks loyalty = 15 } }
3986
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_dhimmi } } add_estate_loyalty = { estate = estate_dhimmi loyalty = 15 } }
3987
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_jains } } add_estate_loyalty = { estate = estate_jains loyalty = 15 } }
3988
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_maratha } } add_estate_loyalty = { estate = estate_maratha loyalty = 15 } }
3989
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_nomadic_tribes } } add_estate_loyalty = { estate = estate_nomadic_tribes loyalty = 15 } }
3990
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_rajput } } add_estate_loyalty = { estate = estate_rajput loyalty = 15 } }
3991
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_vaisyas } } add_estate_loyalty = { estate = estate_vaisyas loyalty = 15 } }
3992
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_janissaries } } add_estate_loyalty = { estate = estate_janissaries loyalty = 15 } }
3993
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_eunuchs } } add_estate_loyalty = { estate = estate_eunuchs loyalty = 15 } }
3994
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_qizilbash } } add_estate_loyalty = { estate = estate_qizilbash loyalty = 15 } }
3995
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_ghulams } } add_estate_loyalty = { estate = estate_ghulams loyalty = 15 } }
3996
+ }
3997
+ else = {
3998
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_nobles } } add_estate_loyalty = { estate = estate_nobles loyalty = 20 } }
3999
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_brahmins } } add_estate_loyalty = { estate = estate_brahmins loyalty = 20 } }
4000
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_burghers } } add_estate_loyalty = { estate = estate_burghers loyalty = 20 } }
4001
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_church } } add_estate_loyalty = { estate = estate_church loyalty = 20 } }
4002
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_cossacks } } add_estate_loyalty = { estate = estate_cossacks loyalty = 20 } }
4003
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_dhimmi } } add_estate_loyalty = { estate = estate_dhimmi loyalty = 20 } }
4004
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_jains } } add_estate_loyalty = { estate = estate_jains loyalty = 20 } }
4005
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_maratha } } add_estate_loyalty = { estate = estate_maratha loyalty = 20 } }
4006
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_nomadic_tribes } } add_estate_loyalty = { estate = estate_nomadic_tribes loyalty = 20 } }
4007
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_rajput } } add_estate_loyalty = { estate = estate_rajput loyalty = 20 } }
4008
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_vaisyas } } add_estate_loyalty = { estate = estate_vaisyas loyalty = 20 } }
4009
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_janissaries } } add_estate_loyalty = { estate = estate_janissaries loyalty = 20 } }
4010
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_eunuchs } } add_estate_loyalty = { estate = estate_eunuchs loyalty = 20 } }
4011
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_qizilbash } } add_estate_loyalty = { estate = estate_qizilbash loyalty = 20 } }
4012
+ if = { limit = { estate_has_exempt_from_seize_land_privilege = { estate = estate_ghulams } } add_estate_loyalty = { estate = estate_ghulams loyalty = 20 } }
4013
+ }
4014
+ }
4015
+ }
4016
+
4017
+ spawn_rebels_seize_land_switch = {
4018
+ trigger_switch = {
4019
+ on_trigger = num_of_owned_areas
4020
+ 1000 = { custom_tooltip = estate_seize_land_interaction_tooltip_1000 seize_land_effect = { scale = 101 } }
4021
+ 990 = { custom_tooltip = estate_seize_land_interaction_tooltip_990 seize_land_effect = { scale = 100 } }
4022
+ 980 = { custom_tooltip = estate_seize_land_interaction_tooltip_980 seize_land_effect = { scale = 99 } }
4023
+ 970 = { custom_tooltip = estate_seize_land_interaction_tooltip_970 seize_land_effect = { scale = 98 } }
4024
+ 960 = { custom_tooltip = estate_seize_land_interaction_tooltip_960 seize_land_effect = { scale = 97 } }
4025
+ 950 = { custom_tooltip = estate_seize_land_interaction_tooltip_950 seize_land_effect = { scale = 96 } }
4026
+ 940 = { custom_tooltip = estate_seize_land_interaction_tooltip_940 seize_land_effect = { scale = 95 } }
4027
+ 930 = { custom_tooltip = estate_seize_land_interaction_tooltip_930 seize_land_effect = { scale = 94 } }
4028
+ 920 = { custom_tooltip = estate_seize_land_interaction_tooltip_920 seize_land_effect = { scale = 93 } }
4029
+ 910 = { custom_tooltip = estate_seize_land_interaction_tooltip_910 seize_land_effect = { scale = 92 } }
4030
+ 900 = { custom_tooltip = estate_seize_land_interaction_tooltip_900 seize_land_effect = { scale = 91 } }
4031
+ 890 = { custom_tooltip = estate_seize_land_interaction_tooltip_890 seize_land_effect = { scale = 90 } }
4032
+ 880 = { custom_tooltip = estate_seize_land_interaction_tooltip_880 seize_land_effect = { scale = 89 } }
4033
+ 870 = { custom_tooltip = estate_seize_land_interaction_tooltip_870 seize_land_effect = { scale = 88 } }
4034
+ 860 = { custom_tooltip = estate_seize_land_interaction_tooltip_860 seize_land_effect = { scale = 87 } }
4035
+ 850 = { custom_tooltip = estate_seize_land_interaction_tooltip_850 seize_land_effect = { scale = 86 } }
4036
+ 840 = { custom_tooltip = estate_seize_land_interaction_tooltip_840 seize_land_effect = { scale = 85 } }
4037
+ 830 = { custom_tooltip = estate_seize_land_interaction_tooltip_830 seize_land_effect = { scale = 84 } }
4038
+ 820 = { custom_tooltip = estate_seize_land_interaction_tooltip_820 seize_land_effect = { scale = 83 } }
4039
+ 810 = { custom_tooltip = estate_seize_land_interaction_tooltip_810 seize_land_effect = { scale = 82 } }
4040
+ 800 = { custom_tooltip = estate_seize_land_interaction_tooltip_800 seize_land_effect = { scale = 81 } }
4041
+ 790 = { custom_tooltip = estate_seize_land_interaction_tooltip_790 seize_land_effect = { scale = 80 } }
4042
+ 780 = { custom_tooltip = estate_seize_land_interaction_tooltip_780 seize_land_effect = { scale = 79 } }
4043
+ 770 = { custom_tooltip = estate_seize_land_interaction_tooltip_770 seize_land_effect = { scale = 78 } }
4044
+ 760 = { custom_tooltip = estate_seize_land_interaction_tooltip_760 seize_land_effect = { scale = 77 } }
4045
+ 750 = { custom_tooltip = estate_seize_land_interaction_tooltip_750 seize_land_effect = { scale = 76 } }
4046
+ 740 = { custom_tooltip = estate_seize_land_interaction_tooltip_740 seize_land_effect = { scale = 75 } }
4047
+ 730 = { custom_tooltip = estate_seize_land_interaction_tooltip_730 seize_land_effect = { scale = 74 } }
4048
+ 720 = { custom_tooltip = estate_seize_land_interaction_tooltip_720 seize_land_effect = { scale = 73 } }
4049
+ 710 = { custom_tooltip = estate_seize_land_interaction_tooltip_710 seize_land_effect = { scale = 72 } }
4050
+ 700 = { custom_tooltip = estate_seize_land_interaction_tooltip_700 seize_land_effect = { scale = 71 } }
4051
+ 690 = { custom_tooltip = estate_seize_land_interaction_tooltip_690 seize_land_effect = { scale = 70 } }
4052
+ 680 = { custom_tooltip = estate_seize_land_interaction_tooltip_680 seize_land_effect = { scale = 69 } }
4053
+ 670 = { custom_tooltip = estate_seize_land_interaction_tooltip_670 seize_land_effect = { scale = 68 } }
4054
+ 660 = { custom_tooltip = estate_seize_land_interaction_tooltip_660 seize_land_effect = { scale = 67 } }
4055
+ 650 = { custom_tooltip = estate_seize_land_interaction_tooltip_650 seize_land_effect = { scale = 66 } }
4056
+ 640 = { custom_tooltip = estate_seize_land_interaction_tooltip_640 seize_land_effect = { scale = 65 } }
4057
+ 630 = { custom_tooltip = estate_seize_land_interaction_tooltip_630 seize_land_effect = { scale = 64 } }
4058
+ 620 = { custom_tooltip = estate_seize_land_interaction_tooltip_620 seize_land_effect = { scale = 63 } }
4059
+ 610 = { custom_tooltip = estate_seize_land_interaction_tooltip_610 seize_land_effect = { scale = 62 } }
4060
+ 600 = { custom_tooltip = estate_seize_land_interaction_tooltip_600 seize_land_effect = { scale = 61 } }
4061
+ 590 = { custom_tooltip = estate_seize_land_interaction_tooltip_590 seize_land_effect = { scale = 60 } }
4062
+ 580 = { custom_tooltip = estate_seize_land_interaction_tooltip_580 seize_land_effect = { scale = 59 } }
4063
+ 570 = { custom_tooltip = estate_seize_land_interaction_tooltip_570 seize_land_effect = { scale = 58 } }
4064
+ 560 = { custom_tooltip = estate_seize_land_interaction_tooltip_560 seize_land_effect = { scale = 57 } }
4065
+ 550 = { custom_tooltip = estate_seize_land_interaction_tooltip_550 seize_land_effect = { scale = 56 } }
4066
+ 540 = { custom_tooltip = estate_seize_land_interaction_tooltip_540 seize_land_effect = { scale = 55 } }
4067
+ 530 = { custom_tooltip = estate_seize_land_interaction_tooltip_530 seize_land_effect = { scale = 54 } }
4068
+ 520 = { custom_tooltip = estate_seize_land_interaction_tooltip_520 seize_land_effect = { scale = 53 } }
4069
+ 510 = { custom_tooltip = estate_seize_land_interaction_tooltip_510 seize_land_effect = { scale = 52 } }
4070
+ 500 = { custom_tooltip = estate_seize_land_interaction_tooltip_500 seize_land_effect = { scale = 51 } }
4071
+ 490 = { custom_tooltip = estate_seize_land_interaction_tooltip_490 seize_land_effect = { scale = 50 } }
4072
+ 480 = { custom_tooltip = estate_seize_land_interaction_tooltip_480 seize_land_effect = { scale = 49 } }
4073
+ 470 = { custom_tooltip = estate_seize_land_interaction_tooltip_470 seize_land_effect = { scale = 48 } }
4074
+ 460 = { custom_tooltip = estate_seize_land_interaction_tooltip_460 seize_land_effect = { scale = 47 } }
4075
+ 450 = { custom_tooltip = estate_seize_land_interaction_tooltip_450 seize_land_effect = { scale = 46 } }
4076
+ 440 = { custom_tooltip = estate_seize_land_interaction_tooltip_440 seize_land_effect = { scale = 45 } }
4077
+ 430 = { custom_tooltip = estate_seize_land_interaction_tooltip_430 seize_land_effect = { scale = 44 } }
4078
+ 420 = { custom_tooltip = estate_seize_land_interaction_tooltip_420 seize_land_effect = { scale = 43 } }
4079
+ 410 = { custom_tooltip = estate_seize_land_interaction_tooltip_410 seize_land_effect = { scale = 42 } }
4080
+ 400 = { custom_tooltip = estate_seize_land_interaction_tooltip_400 seize_land_effect = { scale = 41 } }
4081
+ 390 = { custom_tooltip = estate_seize_land_interaction_tooltip_390 seize_land_effect = { scale = 40 } }
4082
+ 380 = { custom_tooltip = estate_seize_land_interaction_tooltip_380 seize_land_effect = { scale = 39 } }
4083
+ 370 = { custom_tooltip = estate_seize_land_interaction_tooltip_370 seize_land_effect = { scale = 38 } }
4084
+ 360 = { custom_tooltip = estate_seize_land_interaction_tooltip_360 seize_land_effect = { scale = 37 } }
4085
+ 350 = { custom_tooltip = estate_seize_land_interaction_tooltip_350 seize_land_effect = { scale = 36 } }
4086
+ 340 = { custom_tooltip = estate_seize_land_interaction_tooltip_340 seize_land_effect = { scale = 35 } }
4087
+ 330 = { custom_tooltip = estate_seize_land_interaction_tooltip_330 seize_land_effect = { scale = 34 } }
4088
+ 320 = { custom_tooltip = estate_seize_land_interaction_tooltip_320 seize_land_effect = { scale = 33 } }
4089
+ 310 = { custom_tooltip = estate_seize_land_interaction_tooltip_310 seize_land_effect = { scale = 32 } }
4090
+ 300 = { custom_tooltip = estate_seize_land_interaction_tooltip_300 seize_land_effect = { scale = 31 } }
4091
+ 290 = { custom_tooltip = estate_seize_land_interaction_tooltip_290 seize_land_effect = { scale = 30 } }
4092
+ 280 = { custom_tooltip = estate_seize_land_interaction_tooltip_280 seize_land_effect = { scale = 29 } }
4093
+ 270 = { custom_tooltip = estate_seize_land_interaction_tooltip_270 seize_land_effect = { scale = 28 } }
4094
+ 260 = { custom_tooltip = estate_seize_land_interaction_tooltip_260 seize_land_effect = { scale = 27 } }
4095
+ 250 = { custom_tooltip = estate_seize_land_interaction_tooltip_250 seize_land_effect = { scale = 26 } }
4096
+ 240 = { custom_tooltip = estate_seize_land_interaction_tooltip_240 seize_land_effect = { scale = 25 } }
4097
+ 230 = { custom_tooltip = estate_seize_land_interaction_tooltip_230 seize_land_effect = { scale = 24 } }
4098
+ 220 = { custom_tooltip = estate_seize_land_interaction_tooltip_220 seize_land_effect = { scale = 23 } }
4099
+ 210 = { custom_tooltip = estate_seize_land_interaction_tooltip_210 seize_land_effect = { scale = 22 } }
4100
+ 200 = { custom_tooltip = estate_seize_land_interaction_tooltip_200 seize_land_effect = { scale = 21 } }
4101
+ 190 = { custom_tooltip = estate_seize_land_interaction_tooltip_190 seize_land_effect = { scale = 20 } }
4102
+ 180 = { custom_tooltip = estate_seize_land_interaction_tooltip_180 seize_land_effect = { scale = 19 } }
4103
+ 170 = { custom_tooltip = estate_seize_land_interaction_tooltip_170 seize_land_effect = { scale = 18 } }
4104
+ 160 = { custom_tooltip = estate_seize_land_interaction_tooltip_160 seize_land_effect = { scale = 17 } }
4105
+ 150 = { custom_tooltip = estate_seize_land_interaction_tooltip_150 seize_land_effect = { scale = 16 } }
4106
+ 140 = { custom_tooltip = estate_seize_land_interaction_tooltip_140 seize_land_effect = { scale = 15 } }
4107
+ 130 = { custom_tooltip = estate_seize_land_interaction_tooltip_130 seize_land_effect = { scale = 14 } }
4108
+ 120 = { custom_tooltip = estate_seize_land_interaction_tooltip_120 seize_land_effect = { scale = 13 } }
4109
+ 110 = { custom_tooltip = estate_seize_land_interaction_tooltip_110 seize_land_effect = { scale = 12 } }
4110
+ 100 = { custom_tooltip = estate_seize_land_interaction_tooltip_100 seize_land_effect = { scale = 11 } }
4111
+ 90 = { custom_tooltip = estate_seize_land_interaction_tooltip_90 seize_land_effect = { scale = 10 } }
4112
+ 80 = { custom_tooltip = estate_seize_land_interaction_tooltip_80 seize_land_effect = { scale = 9 } }
4113
+ 70 = { custom_tooltip = estate_seize_land_interaction_tooltip_70 seize_land_effect = { scale = 8 } }
4114
+ 60 = { custom_tooltip = estate_seize_land_interaction_tooltip_60 seize_land_effect = { scale = 7 } }
4115
+ 50 = { custom_tooltip = estate_seize_land_interaction_tooltip_50 seize_land_effect = { scale = 6 } }
4116
+ 40 = { custom_tooltip = estate_seize_land_interaction_tooltip_40 seize_land_effect = { scale = 5 } }
4117
+ 30 = { custom_tooltip = estate_seize_land_interaction_tooltip_30 seize_land_effect = { scale = 4 } }
4118
+ 20 = { custom_tooltip = estate_seize_land_interaction_tooltip_20 seize_land_effect = { scale = 3 } }
4119
+ 10 = { custom_tooltip = estate_seize_land_interaction_tooltip_10 seize_land_effect = { scale = 2 } }
4120
+ 1 = { custom_tooltip = estate_seize_land_interaction_tooltip_1 seize_land_effect = { scale = 1 } }
4121
+ }
4122
+ }
4123
+
4124
+ estate_action_monarch_power = {
4125
+ if = {
4126
+ limit = {
4127
+ NOT = {
4128
+ estate_influence = {
4129
+ estate = $estate$
4130
+ influence = 50
4131
+ }
4132
+ }
4133
+ }
4134
+ add_$type$_power = 50
4135
+ }
4136
+ if = {
4137
+ limit = {
4138
+ estate_influence = {
4139
+ estate = $estate$
4140
+ influence = 50
4141
+ }
4142
+ NOT = {
4143
+ estate_influence = {
4144
+ estate = $estate$
4145
+ influence = 75
4146
+ }
4147
+ }
4148
+ }
4149
+ add_$type$_power = 100
4150
+ }
4151
+ if = {
4152
+ limit = {
4153
+ estate_influence = {
4154
+ estate = $estate$
4155
+ influence = 75
4156
+ }
4157
+ NOT = {
4158
+ estate_influence = {
4159
+ estate = $estate$
4160
+ influence = 100
4161
+ }
4162
+ }
4163
+ }
4164
+ add_$type$_power = 150
4165
+ }
4166
+ if = {
4167
+ limit = {
4168
+ estate_influence = {
4169
+ estate = $estate$
4170
+ influence = 100
4171
+ }
4172
+ }
4173
+ add_$type$_power = 200
4174
+ }
4175
+ }
4176
+
4177
+ estate_action_years_of_income = {
4178
+ if = {
4179
+ limit = {
4180
+ NOT = {
4181
+ estate_influence = {
4182
+ estate = $estate$
4183
+ influence = 50
4184
+ }
4185
+ }
4186
+ }
4187
+ add_years_of_income = 0.25
4188
+ }
4189
+ if = {
4190
+ limit = {
4191
+ estate_influence = {
4192
+ estate = $estate$
4193
+ influence = 50
4194
+ }
4195
+ NOT = {
4196
+ estate_influence = {
4197
+ estate = $estate$
4198
+ influence = 75
4199
+ }
4200
+ }
4201
+ }
4202
+ add_years_of_income = 0.5
4203
+ }
4204
+ if = {
4205
+ limit = {
4206
+ estate_influence = {
4207
+ estate = $estate$
4208
+ influence = 75
4209
+ }
4210
+ NOT = {
4211
+ estate_influence = {
4212
+ estate = $estate$
4213
+ influence = 100
4214
+ }
4215
+ }
4216
+ }
4217
+ add_years_of_income = 0.75
4218
+ }
4219
+ if = {
4220
+ limit = {
4221
+ estate_influence = {
4222
+ estate = $estate$
4223
+ influence = 100
4224
+ }
4225
+ }
4226
+ add_years_of_income = 1
4227
+ }
4228
+ }
4229
+
4230
+ estate_action_yearly_manpower = {
4231
+ if = {
4232
+ limit = {
4233
+ NOT = {
4234
+ estate_influence = {
4235
+ estate = $estate$
4236
+ influence = 50
4237
+ }
4238
+ }
4239
+ }
4240
+ add_yearly_manpower = 1
4241
+ }
4242
+ if = {
4243
+ limit = {
4244
+ estate_influence = {
4245
+ estate = $estate$
4246
+ influence = 50
4247
+ }
4248
+ NOT = {
4249
+ estate_influence = {
4250
+ estate = $estate$
4251
+ influence = 75
4252
+ }
4253
+ }
4254
+ }
4255
+ add_yearly_manpower = 1.5
4256
+ }
4257
+ if = {
4258
+ limit = {
4259
+ estate_influence = {
4260
+ estate = $estate$
4261
+ influence = 75
4262
+ }
4263
+ NOT = {
4264
+ estate_influence = {
4265
+ estate = $estate$
4266
+ influence = 100
4267
+ }
4268
+ }
4269
+ }
4270
+ add_yearly_manpower = 2
4271
+ }
4272
+ if = {
4273
+ limit = {
4274
+ estate_influence = {
4275
+ estate = $estate$
4276
+ influence = 100
4277
+ }
4278
+ }
4279
+ add_yearly_manpower = 2.5
4280
+ }
4281
+ }
4282
+
4283
+ estate_action_scaling_modifier = {
4284
+ if = {
4285
+ limit = {
4286
+ NOT = {
4287
+ estate_influence = {
4288
+ estate = $estate$
4289
+ influence = 50
4290
+ }
4291
+ }
4292
+ }
4293
+ add_country_modifier = {
4294
+ name = $name$_level_1
4295
+ duration = $duration$
4296
+ }
4297
+ }
4298
+ if = {
4299
+ limit = {
4300
+ estate_influence = {
4301
+ estate = $estate$
4302
+ influence = 50
4303
+ }
4304
+ NOT = {
4305
+ estate_influence = {
4306
+ estate = $estate$
4307
+ influence = 75
4308
+ }
4309
+ }
4310
+ }
4311
+ add_country_modifier = {
4312
+ name = $name$_level_2
4313
+ duration = $duration$
4314
+ }
4315
+ }
4316
+ if = {
4317
+ limit = {
4318
+ estate_influence = {
4319
+ estate = $estate$
4320
+ influence = 75
4321
+ }
4322
+ NOT = {
4323
+ estate_influence = {
4324
+ estate = $estate$
4325
+ influence = 100
4326
+ }
4327
+ }
4328
+ }
4329
+ add_country_modifier = {
4330
+ name = $name$_level_3
4331
+ duration = $duration$
4332
+ }
4333
+ }
4334
+ if = {
4335
+ limit = {
4336
+ estate_influence = {
4337
+ estate = $estate$
4338
+ influence = 100
4339
+ }
4340
+ }
4341
+ add_country_modifier = {
4342
+ name = $name$_level_4
4343
+ duration = $duration$
4344
+ }
4345
+ }
4346
+ }
4347
+
4348
+ estate_action_scaling_province_modifier = {
4349
+ if = {
4350
+ limit = {
4351
+ $country$ = {
4352
+ NOT = {
4353
+ estate_influence = {
4354
+ estate = $estate$
4355
+ influence = 50
4356
+ }
4357
+ }
4358
+ }
4359
+ }
4360
+ add_province_modifier = {
4361
+ name = $name$_level_1
4362
+ duration = $duration$
4363
+ }
4364
+ }
4365
+ if = {
4366
+ limit = {
4367
+ $country$ = {
4368
+ estate_influence = {
4369
+ estate = $estate$
4370
+ influence = 50
4371
+ }
4372
+ NOT = {
4373
+ estate_influence = {
4374
+ estate = $estate$
4375
+ influence = 75
4376
+ }
4377
+ }
4378
+ }
4379
+ }
4380
+ add_province_modifier = {
4381
+ name = $name$_level_2
4382
+ duration = $duration$
4383
+ }
4384
+ }
4385
+ if = {
4386
+ limit = {
4387
+ $country$ = {
4388
+ estate_influence = {
4389
+ estate = $estate$
4390
+ influence = 75
4391
+ }
4392
+ NOT = {
4393
+ estate_influence = {
4394
+ estate = $estate$
4395
+ influence = 100
4396
+ }
4397
+ }
4398
+ }
4399
+ }
4400
+ add_province_modifier = {
4401
+ name = $name$_level_3
4402
+ duration = $duration$
4403
+ }
4404
+ }
4405
+ if = {
4406
+ limit = {
4407
+ $country$ = {
4408
+ estate_influence = {
4409
+ estate = $estate$
4410
+ influence = 100
4411
+ }
4412
+ }
4413
+ }
4414
+ add_province_modifier = {
4415
+ name = $name$_level_4
4416
+ duration = $duration$
4417
+ }
4418
+ }
4419
+ }
4420
+
4421
+ estate_action_tradition = {
4422
+ if = {
4423
+ limit = {
4424
+ NOT = {
4425
+ estate_influence = {
4426
+ estate = $estate$
4427
+ influence = 50
4428
+ }
4429
+ }
4430
+ }
4431
+ add_$type$_tradition = 10
4432
+ }
4433
+ if = {
4434
+ limit = {
4435
+ estate_influence = {
4436
+ estate = $estate$
4437
+ influence = 50
4438
+ }
4439
+ NOT = {
4440
+ estate_influence = {
4441
+ estate = $estate$
4442
+ influence = 75
4443
+ }
4444
+ }
4445
+ }
4446
+ add_$type$_tradition = 15
4447
+ }
4448
+ if = {
4449
+ limit = {
4450
+ estate_influence = {
4451
+ estate = $estate$
4452
+ influence = 75
4453
+ }
4454
+ NOT = {
4455
+ estate_influence = {
4456
+ estate = $estate$
4457
+ influence = 100
4458
+ }
4459
+ }
4460
+ }
4461
+ add_$type$_tradition = 20
4462
+ }
4463
+ if = {
4464
+ limit = {
4465
+ estate_influence = {
4466
+ estate = $estate$
4467
+ influence = 100
4468
+ }
4469
+ }
4470
+ add_$type$_tradition = 25
4471
+ }
4472
+ }
4473
+
4474
+ # Supports the following parameters
4475
+ ###########################################
4476
+ # estate_nobles
4477
+ # estate_brahmins
4478
+ # estate_burghers
4479
+ # estate_church
4480
+ # estate_cossacks
4481
+ # estate_dhimmi
4482
+ # estate_jains
4483
+ # estate_maratha
4484
+ # estate_nomadic_tribes
4485
+ # estate_rajput
4486
+ # estate_vaisyas
4487
+ # estate_janissaries
4488
+ # estate_eunuchs
4489
+ # estate_qizilbash
4490
+ # estate_ghulams
4491
+ # all - disables ALL rebels from seized land
4492
+ disable_rebels_from_seize_land_for_estate = {
4493
+ custom_tooltip = disable_rebels_from_seize_land_for_$estate$
4494
+ hidden_effect = {
4495
+ set_country_flag = disabled_rebels_from_seized_land_for_$estate$
4496
+ }
4497
+ }
4498
+
4499
+ # Supports the following parameters
4500
+ ###########################################
4501
+ # estate_nobles
4502
+ # estate_brahmins
4503
+ # estate_burghers
4504
+ # estate_church
4505
+ # estate_cossacks
4506
+ # estate_dhimmi
4507
+ # estate_jains
4508
+ # estate_maratha
4509
+ # estate_nomadic_tribes
4510
+ # estate_rajput
4511
+ # estate_vaisyas
4512
+ # estate_janissaries
4513
+ # estate_eunuchs
4514
+ # estate_qizilbash
4515
+ # estate_ghulams
4516
+ # all - auto completes for every estate agenda
4517
+ auto_complete_estate_agenda = {
4518
+ custom_tooltip = auto_complete_estate_agenda_$estate$_tt
4519
+ hidden_effect = {
4520
+ set_country_flag = auto_complete_estate_agenda_$estate$
4521
+ }
4522
+ }
4523
+
4524
+ clr_auto_complete_flag = {
4525
+ hidden_effect = {
4526
+ clr_country_flag = auto_complete_estate_agenda_estate_nobles
4527
+ clr_country_flag = auto_complete_estate_agenda_estate_brahmins
4528
+ clr_country_flag = auto_complete_estate_agenda_estate_burghers
4529
+ clr_country_flag = auto_complete_estate_agenda_estate_church
4530
+ clr_country_flag = auto_complete_estate_agenda_estate_cossacks
4531
+ clr_country_flag = auto_complete_estate_agenda_estate_dhimmi
4532
+ clr_country_flag = auto_complete_estate_agenda_estate_jains
4533
+ clr_country_flag = auto_complete_estate_agenda_estate_maratha
4534
+ clr_country_flag = auto_complete_estate_agenda_estate_nomadic_tribes
4535
+ clr_country_flag = auto_complete_estate_agenda_estate_rajput
4536
+ clr_country_flag = auto_complete_estate_agenda_estate_vaisyas
4537
+ clr_country_flag = auto_complete_estate_agenda_estate_janissaries
4538
+ clr_country_flag = auto_complete_estate_agenda_estate_eunuchs
4539
+ clr_country_flag = auto_complete_estate_agenda_estate_qizilbash
4540
+ clr_country_flag = auto_complete_estate_agenda_estate_ghulams
4541
+ clr_country_flag = auto_complete_estate_agenda_all
4542
+ }
4543
+ }
4544
+
4545
+ on_completed_agenda_effect_estate_nobles = {
4546
+ if = {
4547
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4548
+ change_statists_vs_orangists = 0.05
4549
+ }
4550
+ }
4551
+ on_completed_agenda_effect_estate_brahmins = {
4552
+ if = {
4553
+ limit = { has_government_attribute = clergy_estate_agendas_gives_karma }
4554
+ add_karma = 10
4555
+ }
4556
+ if = {
4557
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4558
+ change_statists_vs_orangists = -0.05
4559
+ }
4560
+ }
4561
+ on_completed_agenda_effect_estate_burghers = {}
4562
+ on_completed_agenda_effect_estate_church = {
4563
+ if = {
4564
+ limit = { has_government_attribute = clergy_estate_agendas_gives_karma }
4565
+ add_karma = 10
4566
+ }
4567
+ if = {
4568
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4569
+ change_statists_vs_orangists = -0.05
4570
+ }
4571
+ }
4572
+ on_completed_agenda_effect_estate_cossacks = {
4573
+ if = {
4574
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4575
+ change_statists_vs_orangists = 0.05
4576
+ }
4577
+ }
4578
+ on_completed_agenda_effect_estate_dhimmi = {}
4579
+ on_completed_agenda_effect_estate_jains = {}
4580
+ on_completed_agenda_effect_estate_maratha = {
4581
+ if = {
4582
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4583
+ change_statists_vs_orangists = 0.05
4584
+ }
4585
+ }
4586
+ on_completed_agenda_effect_estate_nomadic_tribes = {
4587
+ if = {
4588
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4589
+ change_statists_vs_orangists = 0.05
4590
+ }
4591
+ }
4592
+ on_completed_agenda_effect_estate_rajput = {
4593
+ if = {
4594
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4595
+ change_statists_vs_orangists = 0.05
4596
+ }
4597
+ }
4598
+ on_completed_agenda_effect_estate_vaisyas = {}
4599
+ on_completed_agenda_effect_estate_janissaries = {
4600
+ if = {
4601
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4602
+ change_statists_vs_orangists = 0.05
4603
+ }
4604
+ }
4605
+ on_completed_agenda_effect_estate_eunuchs = {}
4606
+ on_completed_agenda_effect_estate_qizilbash = {
4607
+ if = {
4608
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4609
+ change_statists_vs_orangists = 0.05
4610
+ }
4611
+ }
4612
+ on_completed_agenda_effect_estate_ghulams = {
4613
+ if = {
4614
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
4615
+ change_statists_vs_orangists = 0.05
4616
+ }
4617
+ }
4618
+
4619
+ on_completed_agenda_effect = {
4620
+ on_completed_agenda_effect_$estate$ = yes
4621
+ if = {
4622
+ limit = {
4623
+ has_government_mechanic = ottoman_decadence_mechanic
4624
+ }
4625
+ add_government_power = {
4626
+ mechanic_type = ottoman_decadence_mechanic
4627
+ power_type = ottoman_decadence
4628
+ value = -0.5
4629
+ }
4630
+ }
4631
+ clr_auto_complete_flag = yes
4632
+ }
4633
+
4634
+ on_failed_agenda_effect = {
4635
+ if = {
4636
+ limit = {
4637
+ has_government_mechanic = ottoman_decadence_mechanic
4638
+ }
4639
+ add_government_power = {
4640
+ mechanic_type = ottoman_decadence_mechanic
4641
+ power_type = ottoman_decadence
4642
+ value = 1
4643
+ }
4644
+ }
4645
+ }
4646
+
4647
+ #Estates are here ordered in "mana classes" - ADM for Clergy, DIP for Burghers, etc
4648
+ add_estate_loyalty_by_class_adm = {
4649
+ if = {
4650
+ limit = { has_estate = estate_church }
4651
+ add_estate_loyalty = {
4652
+ estate = estate_church
4653
+ loyalty = $loyalty$
4654
+ }
4655
+ }
4656
+ if = {
4657
+ limit = { has_estate = estate_dhimmi }
4658
+ add_estate_loyalty = {
4659
+ estate = estate_dhimmi
4660
+ loyalty = $loyalty$
4661
+ }
4662
+ }
4663
+ if = {
4664
+ limit = { has_estate = estate_brahmins }
4665
+ add_estate_loyalty = {
4666
+ estate = estate_brahmins
4667
+ loyalty = $loyalty$
4668
+ }
4669
+ }
4670
+ if = {
4671
+ limit = { has_estate = estate_eunuchs }
4672
+ add_estate_loyalty = {
4673
+ estate = estate_eunuchs
4674
+ loyalty = $loyalty$
4675
+ }
4676
+ }
4677
+ }
4678
+ add_estate_loyalty_by_class_dip = {
4679
+ if = {
4680
+ limit = { has_estate = estate_burghers }
4681
+ add_estate_loyalty = {
4682
+ estate = estate_burghers
4683
+ loyalty = $loyalty$
4684
+ }
4685
+ }
4686
+ if = {
4687
+ limit = { has_estate = estate_jains }
4688
+ add_estate_loyalty = {
4689
+ estate = estate_jains
4690
+ loyalty = $loyalty$
4691
+ }
4692
+ }
4693
+ if = {
4694
+ limit = { has_estate = estate_vaisyas }
4695
+ add_estate_loyalty = {
4696
+ estate = estate_vaisyas
4697
+ loyalty = $loyalty$
4698
+ }
4699
+ }
4700
+ }
4701
+ add_estate_loyalty_by_class_mil = {
4702
+ if = {
4703
+ limit = { has_estate = estate_nobles }
4704
+ add_estate_loyalty = {
4705
+ estate = estate_nobles
4706
+ loyalty = $loyalty$
4707
+ }
4708
+ }
4709
+ if = {
4710
+ limit = { has_estate = estate_cossacks }
4711
+ add_estate_loyalty = {
4712
+ estate = estate_cossacks
4713
+ loyalty = $loyalty$
4714
+ }
4715
+ }
4716
+ if = {
4717
+ limit = { has_estate = estate_nomadic_tribes }
4718
+ add_estate_loyalty = {
4719
+ estate = estate_nomadic_tribes
4720
+ loyalty = $loyalty$
4721
+ }
4722
+ }
4723
+ if = {
4724
+ limit = { has_estate = estate_maratha }
4725
+ add_estate_loyalty = {
4726
+ estate = estate_maratha
4727
+ loyalty = $loyalty$
4728
+ }
4729
+ }
4730
+ if = {
4731
+ limit = { has_estate = estate_rajput }
4732
+ add_estate_loyalty = {
4733
+ estate = estate_rajput
4734
+ loyalty = $loyalty$
4735
+ }
4736
+ }
4737
+ if = {
4738
+ limit = { has_estate = estate_janissaries }
4739
+ add_estate_loyalty = {
4740
+ estate = estate_janissaries
4741
+ loyalty = $loyalty$
4742
+ }
4743
+ }
4744
+ if = {
4745
+ limit = { has_estate = estate_qizilbash }
4746
+ add_estate_loyalty = {
4747
+ estate = estate_qizilbash
4748
+ loyalty = $loyalty$
4749
+ }
4750
+ }
4751
+ if = {
4752
+ limit = { has_estate = estate_ghulams }
4753
+ add_estate_loyalty = {
4754
+ estate = estate_ghulams
4755
+ loyalty = $loyalty$
4756
+ }
4757
+ }
4758
+ }
4759
+
4760
+
4761
+ estate_action_MAKE_GENEROUS_DONATION_BRAHMINS = {
4762
+ add_years_of_income = -0.25
4763
+ add_estate_loyalty = {
4764
+ estate = estate_brahmins
4765
+ loyalty = 10
4766
+ }
4767
+ }
4768
+ estate_action_SEEK_SUPPORT_OF_BRAHMINS = {
4769
+ add_prestige = -5
4770
+ add_legitimacy = -5
4771
+ add_republican_tradition = -3
4772
+ add_estate_influence_modifier = {
4773
+ estate = estate_brahmins
4774
+ desc = EST_VAL_SOUGHT_SUPPORT
4775
+ influence = 10
4776
+ duration = 7300
4777
+ }
4778
+ add_estate_loyalty = {
4779
+ estate = estate_brahmins
4780
+ loyalty = 15
4781
+ }
4782
+ }
4783
+ estate_action_RECRUIT_MINISTER_BRAHMINS = {
4784
+ generate_estate_advisor = {
4785
+ estate = estate_brahmins
4786
+ type = theologian
4787
+ }
4788
+ add_estate_loyalty = {
4789
+ estate = estate_brahmins
4790
+ loyalty = -10
4791
+ }
4792
+ #add_estate_influence_modifier = {
4793
+ # estate = estate_brahmins
4794
+ # desc = EST_VAL_BRAHMIN_MINISTER
4795
+ # influence = 15
4796
+ # duration = 10950
4797
+ #}
4798
+ }
4799
+ estate_action_RECRUIT_INQUISITOR_BRAHMINS = {
4800
+ generate_estate_advisor = {
4801
+ estate = estate_brahmins
4802
+ type = inquisitor
4803
+ }
4804
+ add_estate_loyalty = {
4805
+ estate = estate_brahmins
4806
+ loyalty = -10
4807
+ }
4808
+ #add_estate_influence_modifier = {
4809
+ # estate = estate_brahmins
4810
+ # desc = EST_VAL_CLERGY_INQUISITOR
4811
+ # influence = 10
4812
+ # duration = 10950
4813
+ #}
4814
+ if = {
4815
+ limit = { has_estate = estate_dhimmi }
4816
+ add_estate_loyalty = {
4817
+ estate = estate_dhimmi
4818
+ loyalty = -15
4819
+ }
4820
+ }
4821
+ }
4822
+ estate_action_DEMAND_SUPPORT_BRAHMINS = {
4823
+ estate_action_monarch_power = {
4824
+ estate = estate_brahmins
4825
+ type = adm
4826
+ }
4827
+ add_estate_loyalty = {
4828
+ estate = estate_brahmins
4829
+ loyalty = -20
4830
+ }
4831
+ }
4832
+ estate_action_SEEK_BRAHMIN_LEGITIMACY_BRAHMINS = {
4833
+ add_country_modifier = {
4834
+ name = muslim_brahmin_legitimacy
4835
+ duration = 7300
4836
+ }
4837
+ add_estate_influence_modifier = {
4838
+ estate = estate_brahmins
4839
+ desc = EST_VAL_BRAHMIN_LEGITIMACY
4840
+ influence = 15
4841
+ duration = 7300
4842
+ }
4843
+ auto_complete_estate_agenda = {
4844
+ estate = estate_brahmins
4845
+ }
4846
+ }
4847
+ estate_action_ASK_FOR_CONTRIBUTION_BURGHERS = {
4848
+ #estate_action_years_of_income = {
4849
+ # estate = estate_burghers
4850
+ #}
4851
+ estate_action_scaling_modifier = {
4852
+ estate = estate_burghers
4853
+ name = ASK_FOR_CONTRIBUTION_BURGHERS
4854
+ duration = 3650
4855
+ }
4856
+ add_estate_loyalty = {
4857
+ estate = estate_burghers
4858
+ loyalty = -10
4859
+ }
4860
+ }
4861
+ estate_action_DEMAND_SUPPORT_BURGHERS = {
4862
+ estate_action_monarch_power = {
4863
+ estate = estate_burghers
4864
+ type = dip
4865
+ }
4866
+ add_estate_loyalty = {
4867
+ estate = estate_burghers
4868
+ loyalty = -20
4869
+ }
4870
+
4871
+ }
4872
+ estate_action_GRANT_MONOPOLY_CHARTER_BURGHERS = {
4873
+ add_prestige = -5
4874
+ add_estate_influence_modifier = {
4875
+ estate = estate_burghers
4876
+ desc = EST_VAL_GRANTED_MONOPOLIES
4877
+ influence = 10
4878
+ duration = 7300
4879
+ }
4880
+ add_estate_loyalty = {
4881
+ estate = estate_burghers
4882
+ loyalty = 15
4883
+ }
4884
+ auto_complete_estate_agenda = {
4885
+ estate = estate_burghers
4886
+ }
4887
+ }
4888
+ estate_action_RECRUIT_MINISTER_BURGHERS = {
4889
+ generate_estate_advisor = {
4890
+ estate = estate_burghers
4891
+ type = master_of_mint
4892
+ }
4893
+ #add_estate_influence_modifier = {
4894
+ # estate = estate_burghers
4895
+ # desc = EST_VAL_BURGHER_MINISTER
4896
+ # influence = 15
4897
+ # duration = 10950
4898
+ #}
4899
+ add_estate_loyalty = {
4900
+ estate = estate_burghers
4901
+ loyalty = -10
4902
+ }
4903
+ }
4904
+ estate_action_GRANT_ADMIRALSHIP_BURGHERS = {
4905
+ create_leader_scaling_with_tradition = {
4906
+ leader = admiral
4907
+ type = navy
4908
+ }
4909
+ #add_estate_influence_modifier = {
4910
+ # estate = estate_burghers
4911
+ # desc = EST_VAL_GRANTED_ADMIRALSHIP
4912
+ # influence = 20
4913
+ # duration = 3650
4914
+ #}
4915
+ add_estate_loyalty = {
4916
+ estate = estate_burghers
4917
+ loyalty = -10
4918
+ }
4919
+ }
4920
+ estate_action_GRANT_NEW_WORLD_CHARTER_BURGHERS = {
4921
+ add_country_modifier = {
4922
+ name = "new_world_company"
4923
+ duration = 3650
4924
+ }
4925
+ #add_estate_influence_modifier = {
4926
+ # estate = estate_burghers
4927
+ # desc = EST_VAL_NEW_WORLD_CHARTER
4928
+ # influence = 15
4929
+ # duration = 3650
4930
+ #}
4931
+ create_leader_scaling_with_tradition = {
4932
+ leader = explorer
4933
+ type = navy
4934
+ }
4935
+ }
4936
+ estate_action_COMISSION_MERCHANT_SHIPS_FOR_WAR_BURGHERS = {
4937
+ #add_estate_loyalty = {
4938
+ # estate = estate_burghers
4939
+ # loyalty = -15
4940
+ #}
4941
+ add_ship_construction_scaled_to_ports = {
4942
+ type = heavy_ship
4943
+ }
4944
+ }
4945
+ estate_action_MAKE_GENEROUS_DONATION_CHURCH = {
4946
+ add_years_of_income = -0.25
4947
+ add_estate_loyalty = {
4948
+ estate = estate_church
4949
+ loyalty = 10
4950
+ }
4951
+ }
4952
+ estate_action_RECRUIT_MINISTER_CHURCH = {
4953
+ generate_estate_advisor = {
4954
+ estate = estate_church
4955
+ type = theologian
4956
+ }
4957
+ #add_estate_influence_modifier = {
4958
+ # estate = estate_church
4959
+ # desc = EST_VAL_CLERGY_MINISTER
4960
+ # influence = 15
4961
+ # duration = 10950
4962
+ #}
4963
+ add_estate_loyalty = {
4964
+ estate = estate_church
4965
+ loyalty = -10
4966
+ }
4967
+ }
4968
+ estate_action_RECRUIT_INQUISITOR_CHURCH = {
4969
+ generate_estate_advisor = {
4970
+ estate = estate_church
4971
+ type = inquisitor
4972
+ }
4973
+ #add_estate_influence_modifier = {
4974
+ # estate = estate_church
4975
+ # desc = EST_VAL_CLERGY_INQUISITOR
4976
+ # influence = 10
4977
+ # duration = 10950
4978
+ #}
4979
+ if = {
4980
+ limit = { has_estate = estate_dhimmi }
4981
+ add_estate_loyalty = {
4982
+ estate = estate_dhimmi
4983
+ loyalty = -15
4984
+ }
4985
+ }
4986
+ add_estate_loyalty = {
4987
+ estate = estate_church
4988
+ loyalty = -10
4989
+ }
4990
+ }
4991
+ estate_action_RELIGIOUS_DELEGATION_CHURCH = {
4992
+ if = {
4993
+ limit = {
4994
+ religion = catholic
4995
+ }
4996
+ reverse_add_opinion = {
4997
+ who = PAP
4998
+ modifier = religious_delegation
4999
+ }
5000
+ }
5001
+ add_estate_loyalty = {
5002
+ estate = estate_church
5003
+ loyalty = 10
5004
+ }
5005
+ auto_complete_estate_agenda = {
5006
+ estate = estate_church
5007
+ }
5008
+ }
5009
+ estate_action_DEMAND_SUPPORT_CHURCH = {
5010
+ estate_action_monarch_power = {
5011
+ estate = estate_church
5012
+ type = adm
5013
+ }
5014
+ add_estate_loyalty = {
5015
+ estate = estate_church
5016
+ loyalty = -20
5017
+ }
5018
+ }
5019
+ estate_action_SEEK_SUPPORT_OF_CLERGY_CHURCH = {
5020
+ add_prestige = -5
5021
+ add_legitimacy = -5
5022
+ add_republican_tradition = -3
5023
+ add_devotion = -5
5024
+ add_horde_unity = -5
5025
+ add_meritocracy = -2
5026
+ change_piety_effect = {
5027
+ amount = 0.05
5028
+ }
5029
+ if = {
5030
+ limit = {
5031
+ uses_church_aspects = yes
5032
+ }
5033
+ add_church_power = 10
5034
+ }
5035
+ if = {
5036
+ limit = {
5037
+ uses_patriarch_authority = yes
5038
+ }
5039
+ add_patriarch_authority = 0.05
5040
+ }
5041
+ if = {
5042
+ limit = {
5043
+ uses_fervor = yes
5044
+ }
5045
+ add_fervor = 10
5046
+ }
5047
+ if = {
5048
+ limit = {
5049
+ religion = confucianism
5050
+ }
5051
+ add_harmony = 5
5052
+ }
5053
+ if = {
5054
+ limit = {
5055
+ harmonization_progress = 1
5056
+ }
5057
+ add_harmonization_progress = 1
5058
+ }
5059
+ change_karma_effect = {
5060
+ amount = 10
5061
+ second_amount = 5
5062
+ }
5063
+ add_papal_influence = 15
5064
+ add_estate_influence_modifier = {
5065
+ estate = estate_church
5066
+ desc = EST_VAL_SOUGHT_SUPPORT
5067
+ influence = 10
5068
+ duration = 7300
5069
+ }
5070
+ add_estate_loyalty = {
5071
+ estate = estate_church
5072
+ loyalty = 15
5073
+ }
5074
+ }
5075
+ estate_action_NEW_WORLD_MISSION_CHURCH = {
5076
+ add_country_modifier = {
5077
+ name = "new_world_missions"
5078
+ duration = 7300
5079
+ }
5080
+ add_estate_influence_modifier = {
5081
+ estate = estate_church
5082
+ desc = EST_VAL_NEW_WORLD_MISSION
5083
+ influence = 15
5084
+ duration = 7300
5085
+ }
5086
+ }
5087
+ estate_action_EXPAND_COSSACK_REGISTRY_COSSACKS = {
5088
+ add_prestige = -5
5089
+ add_estate_loyalty = {
5090
+ estate = estate_cossacks
5091
+ loyalty = 10
5092
+ }
5093
+ add_estate_influence_modifier = {
5094
+ estate = estate_cossacks
5095
+ desc = EST_VAL_COSSACK_REGISTER_EXPANDED
5096
+ influence = 10
5097
+ duration = 7300
5098
+ }
5099
+ }
5100
+ estate_action_RAISE_COSSACK_HOST_COSSACKS = {
5101
+ custom_tooltip = RAISE_COSSACK_HOST_COSSACKS_effect_tt
5102
+ hidden_effect = {
5103
+ if = {
5104
+ limit = {
5105
+ NOT = { army_size_percentage = 1 }
5106
+ }
5107
+ random_owned_province = {
5108
+ limit = { has_terrain = steppe }
5109
+ cossack_cavalry = ROOT
5110
+ }
5111
+ add_manpower = -1
5112
+ }
5113
+ if = {
5114
+ limit = {
5115
+ num_of_owned_provinces_with = {
5116
+ value = 2
5117
+ has_terrain = steppe
5118
+ }
5119
+ NOT = { army_size_percentage = 1 }
5120
+ }
5121
+ random_owned_province = {
5122
+ limit = { has_terrain = steppe }
5123
+ cossack_cavalry = ROOT
1612
5124
  }
1613
- if = {
1614
- limit = {
1615
- any_owned_province = {
1616
- OR = {
1617
- is_in_capital_area = yes
1618
- is_state_core = root
1619
- }
1620
- is_capital = no
1621
- NOT = {
1622
- area_for_scope_province = {
1623
- owned_by = root
1624
- has_province_flag = seize_land_spawn_unrest_and_rebels
1625
- }
1626
- }
1627
- area_for_scope_province = {
1628
- any_neighbor_province = {
1629
- owned_by = root
1630
- has_province_flag = seize_land_spawn_unrest_and_rebels
1631
- }
1632
- }
1633
- }
5125
+ add_manpower = -1
5126
+ }
5127
+ if = {
5128
+ limit = {
5129
+ num_of_owned_provinces_with = {
5130
+ value = 3
5131
+ has_terrain = steppe
5132
+ }
5133
+ NOT = { army_size_percentage = 1 }
5134
+ }
5135
+ random_owned_province = {
5136
+ limit = { has_terrain = steppe }
5137
+ cossack_cavalry = ROOT
5138
+ }
5139
+ add_manpower = -1
5140
+ }
5141
+ if = {
5142
+ limit = {
5143
+ num_of_owned_provinces_with = {
5144
+ value = 4
5145
+ has_terrain = steppe
5146
+ }
5147
+ NOT = { army_size_percentage = 1 }
5148
+ }
5149
+ random_owned_province = {
5150
+ limit = { has_terrain = steppe }
5151
+ cossack_cavalry = ROOT
5152
+ }
5153
+ add_manpower = -1
5154
+ }
5155
+ if = {
5156
+ limit = {
5157
+ num_of_owned_provinces_with = {
5158
+ value = 5
5159
+ has_terrain = steppe
5160
+ }
5161
+ NOT = { army_size_percentage = 1 }
5162
+ }
5163
+ random_owned_province = {
5164
+ limit = { has_terrain = steppe }
5165
+ cossack_cavalry = ROOT
5166
+ }
5167
+ add_manpower = -1
5168
+ }
5169
+ if = {
5170
+ limit = {
5171
+ num_of_owned_provinces_with = {
5172
+ value = 6
5173
+ has_terrain = steppe
5174
+ }
5175
+ estate_influence = {
5176
+ estate = estate_cossacks
5177
+ influence = 60
5178
+ }
5179
+ NOT = { army_size_percentage = 1 }
5180
+ }
5181
+ random_owned_province = {
5182
+ limit = { has_terrain = steppe }
5183
+ cossack_cavalry = ROOT
5184
+ }
5185
+ add_manpower = -1
5186
+ }
5187
+ if = {
5188
+ limit = {
5189
+ num_of_owned_provinces_with = {
5190
+ value = 7
5191
+ has_terrain = steppe
5192
+ }
5193
+ estate_influence = {
5194
+ estate = estate_cossacks
5195
+ influence = 60
1634
5196
  }
1635
- random_owned_province = {
1636
- limit = {
1637
- OR = {
1638
- is_in_capital_area = yes
1639
- is_state_core = root
1640
- }
1641
- is_capital = no
1642
- NOT = {
1643
- area_for_scope_province = {
1644
- owned_by = root
1645
- has_province_flag = seize_land_spawn_unrest_and_rebels
1646
- }
1647
- }
1648
- area_for_scope_province = {
1649
- any_neighbor_province = {
1650
- owned_by = root
1651
- has_province_flag = seize_land_spawn_unrest_and_rebels
1652
- }
1653
- }
1654
- highest_supply_limit_in_area = yes
1655
- }
1656
- spawn_rebels_from_unhappy_estate = { size = 2 }
1657
- area = {
1658
- limit = {
1659
- owned_by = ROOT
1660
- }
1661
- set_province_flag = seize_land_spawn_unrest_and_rebels
1662
- add_named_unrest = { name = estate_land_seized value = 10 }
1663
- }
5197
+ NOT = { army_size_percentage = 1 }
5198
+ }
5199
+ random_owned_province = {
5200
+ limit = { has_terrain = steppe }
5201
+ cossack_cavalry = ROOT
5202
+ }
5203
+ add_manpower = -1
5204
+ }
5205
+ if = {
5206
+ limit = {
5207
+ num_of_owned_provinces_with = {
5208
+ value = 8
5209
+ has_terrain = steppe
5210
+ }
5211
+ estate_influence = {
5212
+ estate = estate_cossacks
5213
+ influence = 60
1664
5214
  }
5215
+ NOT = { army_size_percentage = 1 }
1665
5216
  }
1666
- else = {
1667
- random_owned_province = {
1668
- limit = {
1669
- OR = {
1670
- is_in_capital_area = yes
1671
- is_state_core = root
1672
- }
1673
- NOT = {
1674
- area_for_scope_province = {
1675
- owned_by = root
1676
- has_province_flag = seize_land_spawn_unrest_and_rebels
1677
- }
1678
- }
1679
- highest_supply_limit_in_area = yes
1680
- }
1681
- spawn_rebels_from_unhappy_estate = { size = 2 }
1682
- area = {
1683
- limit = {
1684
- owned_by = ROOT
1685
- }
1686
- set_province_flag = seize_land_spawn_unrest_and_rebels
1687
- add_named_unrest = { name = estate_land_seized value = 10 }
1688
- }
5217
+ random_owned_province = {
5218
+ limit = { has_terrain = steppe }
5219
+ cossack_cavalry = ROOT
5220
+ }
5221
+ add_manpower = -1
5222
+ }
5223
+ if = {
5224
+ limit = {
5225
+ num_of_owned_provinces_with = {
5226
+ value = 9
5227
+ has_terrain = steppe
5228
+ }
5229
+ estate_influence = {
5230
+ estate = estate_cossacks
5231
+ influence = 60
5232
+ }
5233
+ NOT = { army_size_percentage = 1 }
5234
+ }
5235
+ random_owned_province = {
5236
+ limit = { has_terrain = steppe }
5237
+ cossack_cavalry = ROOT
5238
+ }
5239
+ add_manpower = -1
5240
+ }
5241
+ if = {
5242
+ limit = {
5243
+ num_of_owned_provinces_with = {
5244
+ value = 10
5245
+ has_terrain = steppe
5246
+ }
5247
+ estate_influence = {
5248
+ estate = estate_cossacks
5249
+ influence = 60
1689
5250
  }
5251
+ NOT = { army_size_percentage = 1 }
1690
5252
  }
5253
+ random_owned_province = {
5254
+ limit = { has_terrain = steppe }
5255
+ cossack_cavalry = ROOT
5256
+ }
5257
+ add_manpower = -1
5258
+ }
5259
+ }
5260
+ add_estate_loyalty = {
5261
+ estate = estate_cossacks
5262
+ loyalty = -15
5263
+ }
5264
+ add_estate_influence_modifier = {
5265
+ estate = estate_cossacks
5266
+ desc = EST_VAL_RAISED_COSSACK_HOST
5267
+ influence = 10
5268
+ duration = 1825
5269
+ }
5270
+ }
5271
+ estate_action_COSSACK_CONQUISTADOR_COSSACKS = {
5272
+ create_leader_scaling_with_tradition = {
5273
+ leader = conquistador
5274
+ type = army
5275
+ }
5276
+ #add_estate_influence_modifier = {
5277
+ # estate = estate_cossacks
5278
+ # desc = EST_VAL_COSSACK_CONQUISTADOR
5279
+ # influence = 20
5280
+ # duration = 10950
5281
+ #}
5282
+ add_estate_loyalty = {
5283
+ estate = estate_cossacks
5284
+ loyalty = -10
5285
+ }
5286
+ }
5287
+ estate_action_RECRUIT_MINISTER_COSSACKS = {
5288
+ generate_estate_advisor = {
5289
+ estate = estate_cossacks
5290
+ type = army_reformer
5291
+ }
5292
+ add_estate_loyalty = {
5293
+ estate = estate_cossacks
5294
+ loyalty = -10
5295
+ }
5296
+ #add_estate_influence_modifier = {
5297
+ # estate = estate_cossacks
5298
+ # desc = EST_VAL_COSSACKS_MINISTER
5299
+ # influence = 20
5300
+ # duration = 10950
5301
+ #}
5302
+ if = {
5303
+ limit = {
5304
+ has_estate = estate_nobles
5305
+ }
5306
+ add_estate_loyalty = {
5307
+ estate = estate_nobles
5308
+ loyalty = -15 #Taking offense to a cossack being used in government
5309
+ }
5310
+ }
5311
+ }
5312
+ estate_action_CONSCRIPT_COSSACK_ELITE_COSSACKS = {
5313
+ estate_action_tradition = {
5314
+ type = army
5315
+ estate = estate_cossacks
5316
+ }
5317
+ add_estate_loyalty = {
5318
+ estate = estate_cossacks
5319
+ loyalty = -15
5320
+ }
5321
+ }
5322
+ estate_action_SUPPLY_ARMS_COSSACKS = {
5323
+ add_mil_power = -15
5324
+ add_country_modifier = {
5325
+ name = "armed_cossacks"
5326
+ duration = 7300
5327
+ }
5328
+ add_estate_loyalty = {
5329
+ estate = estate_cossacks
5330
+ loyalty = 5
5331
+ }
5332
+ add_estate_influence_modifier = {
5333
+ estate = estate_cossacks
5334
+ desc = EST_VAL_SUPPLY_ARMS
5335
+ influence = 15
5336
+ duration = 7300
5337
+ }
5338
+ }
5339
+ estate_action_PERMIT_SELF_GOVERNANCE_COSSACKS = {
5340
+ add_estate_loyalty = {
5341
+ estate = estate_cossacks
5342
+ loyalty = 5
5343
+ }
5344
+ add_estate_influence_modifier = {
5345
+ estate = estate_cossacks
5346
+ desc = EST_VAL_SELF_GOVERNANCE
5347
+ influence = 15
5348
+ duration = 7300
5349
+ }
5350
+ auto_complete_estate_agenda = {
5351
+ estate = estate_cossacks
5352
+ }
5353
+ }
5354
+ estate_action_RECRUIT_MINISTER_DHIMMI = {
5355
+ generate_estate_advisor = {
5356
+ estate = estate_dhimmi
5357
+ type = trader
5358
+ }
5359
+ add_estate_loyalty = {
5360
+ estate = estate_dhimmi
5361
+ loyalty = -10
5362
+ }
5363
+ #add_estate_influence_modifier = {
5364
+ # estate = estate_dhimmi
5365
+ # desc = EST_VAL_DHIMMI_MINISTER
5366
+ # influence = 15
5367
+ # duration = 10950
5368
+ #}
5369
+ if = {
5370
+ limit = { has_estate = estate_church }
5371
+ add_estate_loyalty = {
5372
+ estate = estate_church
5373
+ loyalty = -15
5374
+ }
5375
+ }
5376
+ }
5377
+ estate_action_LIGHTEN_DHIMMI_TAX_BURDEN_DHIMMI = {
5378
+ add_estate_loyalty = {
5379
+ estate = estate_dhimmi
5380
+ loyalty = 25
5381
+ }
5382
+ add_estate_influence_modifier = {
5383
+ estate = estate_dhimmi
5384
+ desc = EST_VAL_LIGHTEN_DHIMMI_TAX_BURDEN
5385
+ influence = 10
5386
+ duration = 3650
5387
+ }
5388
+ }
5389
+ estate_action_PROMOTE_DHIMMI_NOBLES_DHIMMI = {
5390
+ add_estate_loyalty = {
5391
+ estate = estate_dhimmi
5392
+ loyalty = 20
5393
+ }
5394
+ #add_country_modifier = {
5395
+ # name = "dhimmi_nobles"
5396
+ # duration = 10950
5397
+ #}
5398
+ add_estate_loyalty = {
5399
+ estate = estate_church
5400
+ loyalty = -15
5401
+ }
5402
+ add_estate_loyalty = {
5403
+ estate = estate_nobles
5404
+ loyalty = -15
5405
+ }
5406
+ add_estate_influence_modifier = {
5407
+ estate = estate_dhimmi
5408
+ desc = EST_VAL_DHIMMI_NOBLES
5409
+ influence = 15
5410
+ duration = 10950
5411
+ }
5412
+ auto_complete_estate_agenda = {
5413
+ estate = estate_dhimmi
5414
+ }
5415
+ }
5416
+ estate_action_RECRUIT_FROM_THE_DHIMMI_DHIMMI = {
5417
+ estate_action_yearly_manpower = {
5418
+ estate = estate_dhimmi
5419
+ }
5420
+ add_estate_loyalty = {
5421
+ estate = estate_dhimmi
5422
+ loyalty = -15
5423
+ }
5424
+ add_estate_influence_modifier = {
5425
+ estate = estate_dhimmi
5426
+ desc = EST_VAL_RECRUITED_DHIMMI
5427
+ influence = 10
5428
+ duration = 3650
5429
+ }
5430
+ }
5431
+ estate_action_DEMAND_CONTRIBUTION_DHIMMI = {
5432
+ estate_action_years_of_income = {
5433
+ estate = estate_dhimmi
5434
+ }
5435
+ add_estate_loyalty = {
5436
+ estate = estate_dhimmi
5437
+ loyalty = -15 #Take more offense than the Burghers do due to their supposedly protected status.
5438
+ }
5439
+ custom_tooltip = DEMAND_CONTRIBUTION_DHIMMI_effect_tt
5440
+ tooltip = {
5441
+ estate_action_scaling_province_modifier = {
5442
+ country = ROOT
5443
+ estate = estate_dhimmi
5444
+ name = DEMAND_CONTRIBUTION_DHIMMI
5445
+ duration = 3650
1691
5446
  }
5447
+ }
5448
+ hidden_effect = {
1692
5449
  every_owned_province = {
1693
- limit = { has_province_flag = seize_land_spawn_unrest_and_rebels }
1694
- clr_province_flag = seize_land_spawn_unrest_and_rebels
5450
+ limit = {
5451
+ NOT = { religion_group = ROOT }
5452
+ }
5453
+ estate_action_scaling_province_modifier = {
5454
+ country = ROOT
5455
+ estate = estate_dhimmi
5456
+ name = DEMAND_CONTRIBUTION_DHIMMI
5457
+ duration = 3650
5458
+ }
1695
5459
  }
1696
5460
  }
1697
5461
  }
1698
-
1699
- spawn_rebels_from_unhappy_estate = {
1700
- random_list = {
1701
- 1 = {
1702
- trigger = {
1703
- owner = {
1704
- has_estate = estate_nobles
1705
- NOT = {
1706
- estate_loyalty = {
1707
- estate = estate_nobles
1708
- loyalty = 30
1709
- }
1710
- }
5462
+ estate_action_PROCURE_LOANS_JAINS = {
5463
+ if = {
5464
+ limit = {
5465
+ NOT = {
5466
+ estate_influence = {
5467
+ estate = estate_jains
5468
+ influence = 50
1711
5469
  }
1712
5470
  }
1713
- if = {
1714
- limit = {
1715
- owner = { primary_culture = polish }
1716
- }
1717
- spawn_rebels = {
1718
- type = polish_noble_rebels
1719
- size = $size$
1720
- estate = estate_nobles
1721
- as_if_faction = yes
1722
- }
5471
+ }
5472
+ add_loan = {
5473
+ interest_modifier = -0.5
5474
+ duration = 60
5475
+ }
5476
+ }
5477
+ if = {
5478
+ limit = {
5479
+ estate_influence = {
5480
+ estate = estate_jains
5481
+ influence = 50
1723
5482
  }
1724
- else = {
1725
- spawn_rebels = {
1726
- type = noble_rebels
1727
- size = $size$
1728
- estate = estate_nobles
1729
- as_if_faction = yes
1730
- }
5483
+ }
5484
+ add_loan = {
5485
+ interest_modifier = -1
5486
+ duration = 60
5487
+ }
5488
+ }
5489
+ add_estate_influence_modifier = {
5490
+ estate = estate_jains
5491
+ desc = EST_VAL_JAIN_LOANS
5492
+ influence = 10
5493
+ duration = 3650
5494
+ }
5495
+ }
5496
+ estate_action_INVESTIGATE_CORRUPTION_JAINS = {
5497
+ add_corruption = -2
5498
+ add_estate_influence_modifier = {
5499
+ estate = estate_jains
5500
+ desc = EST_VAL_JAIN_CORRUPTION
5501
+ influence = 10
5502
+ duration = 3650
5503
+ }
5504
+ }
5505
+ estate_action_PATRONIZE_JAIN_FAMILIES_JAINS = {
5506
+ add_prestige = -5
5507
+ add_estate_loyalty = {
5508
+ estate = estate_jains
5509
+ loyalty = 15
5510
+ }
5511
+ add_estate_influence_modifier = {
5512
+ estate = estate_jains
5513
+ desc = EST_VAL_JAINS_PATRONIZED
5514
+ influence = 10
5515
+ duration = 7300
5516
+ }
5517
+ auto_complete_estate_agenda = {
5518
+ estate = estate_jains
5519
+ }
5520
+ }
5521
+ estate_action_COMMISSION_JAIN_SCRIPTURES_JAINS = {
5522
+ add_years_of_income = -0.25
5523
+ add_estate_loyalty = {
5524
+ estate = estate_jains
5525
+ loyalty = 10
5526
+ }
5527
+ }
5528
+ estate_action_DEMAND_SUPPORT_JAINS = {
5529
+ estate_action_monarch_power = {
5530
+ estate = estate_jains
5531
+ type = dip
5532
+ }
5533
+ add_estate_loyalty = {
5534
+ estate = estate_jains
5535
+ loyalty = -20
5536
+ }
5537
+ }
5538
+ estate_action_PROMOTE_MARATHA_NOBILITY_MARATHA = {
5539
+ add_prestige = -5
5540
+ add_estate_influence_modifier = {
5541
+ estate = estate_maratha
5542
+ desc = EST_VAL_PROMOTED_MARATHAS
5543
+ influence = 10
5544
+ duration = 7300
5545
+ }
5546
+ add_estate_loyalty = {
5547
+ estate = estate_maratha
5548
+ loyalty = 15
5549
+ }
5550
+ auto_complete_estate_agenda = {
5551
+ estate = estate_maratha
5552
+ }
5553
+ if = {
5554
+ limit = {
5555
+ has_estate = estate_nobles
5556
+ }
5557
+ add_estate_loyalty = {
5558
+ estate = estate_nobles
5559
+ loyalty = -15
5560
+ }
5561
+ }
5562
+ }
5563
+ estate_action_RECRUIT_MINISTER_MARATHA = {
5564
+ if = {
5565
+ limit = {
5566
+ has_reform = permanent_marathas_council_reform
5567
+ }
5568
+ custom_tooltip = maratha_general.tooltip
5569
+ hidden_effect = {
5570
+ create_general = {
5571
+ tradition = 40
5572
+ add_shock = 1
5573
+ culture = marathi
1731
5574
  }
1732
5575
  }
1733
- 1 = {
1734
- trigger = {
1735
- owner = {
1736
- has_estate = estate_church
1737
- NOT = {
1738
- estate_loyalty = {
1739
- estate = estate_church
1740
- loyalty = 30
1741
- }
1742
- }
1743
- }
1744
- }
1745
- owner = {
1746
- trigger_switch = {
1747
- on_trigger = religion
1748
- anglican = { PREV = { spawn_rebels = { type = anglican_rebels size = $size$ as_if_faction = yes } } }
1749
- hussite = { PREV = { spawn_rebels = { type = hussite_rebels size = $size$ as_if_faction = yes } } }
1750
- animism = { PREV = { spawn_rebels = { type = animism_rebels size = $size$ as_if_faction = yes } } }
1751
- buddhism = { PREV = { spawn_rebels = { type = buddhism_rebels size = $size$ as_if_faction = yes } } }
1752
- catholic = { PREV = { spawn_rebels = { type = catholic_rebels size = $size$ as_if_faction = yes } } }
1753
- confucianism = { PREV = { spawn_rebels = { type = confucianism_rebels size = $size$ as_if_faction = yes } } }
1754
- coptic = { PREV = { spawn_rebels = { type = coptic_rebels size = $size$ as_if_faction = yes } } }
1755
- hinduism = { PREV = { spawn_rebels = { type = hinduism_rebels size = $size$ as_if_faction = yes } } }
1756
- ibadi = { PREV = { spawn_rebels = { type = ibadi_rebels size = $size$ as_if_faction = yes } } }
1757
- inti = { PREV = { spawn_rebels = { type = inti_rebels size = $size$ as_if_faction = yes } } }
1758
- jewish = { PREV = { spawn_rebels = { type = jewish_rebels size = $size$ as_if_faction = yes } } }
1759
- mahayana = { PREV = { spawn_rebels = { type = mahayana_rebels size = $size$ as_if_faction = yes } } }
1760
- mesoamerican_religion = { PREV = { spawn_rebels = { type = maya_rebels size = $size$ as_if_faction = yes } } }
1761
- nahuatl = { PREV = { spawn_rebels = { type = nahuatl_rebels size = $size$ as_if_faction = yes } } }
1762
- norse_pagan_reformed = { PREV = { spawn_rebels = { type = norse_pagan_reformed_rebels size = $size$ as_if_faction = yes } } }
1763
- orthodox = { PREV = { spawn_rebels = { type = orthodox_rebels size = $size$ as_if_faction = yes } } }
1764
- protestant = { PREV = { spawn_rebels = { type = protestant_rebels size = $size$ as_if_faction = yes } } }
1765
- reformed = { PREV = { spawn_rebels = { type = reformed_rebels size = $size$ as_if_faction = yes } } }
1766
- shamanism = { PREV = { spawn_rebels = { type = shamanism_rebels size = $size$ as_if_faction = yes } } }
1767
- shiite = { PREV = { spawn_rebels = { type = shiite_rebels size = $size$ as_if_faction = yes } } }
1768
- shinto = { PREV = { spawn_rebels = { type = shinto_rebels size = $size$ as_if_faction = yes } } }
1769
- sikhism = { PREV = { spawn_rebels = { type = sikhism_rebels size = $size$ as_if_faction = yes } } }
1770
- sunni = { PREV = { spawn_rebels = { type = sunni_rebels size = $size$ as_if_faction = yes } } }
1771
- tengri_pagan_reformed = { PREV = { spawn_rebels = { type = tengri_pagan_reformed_rebels size = $size$ as_if_faction = yes } } }
1772
- totemism = { PREV = { spawn_rebels = { type = totemism_rebels size = $size$ as_if_faction = yes } } }
1773
- vajrayana = { PREV = { spawn_rebels = { type = vajrayana_rebels size = $size$ as_if_faction = yes } } }
1774
- zoroastrian = { PREV = { spawn_rebels = { type = zoroastrian_rebels size = $size$ as_if_faction = yes } } }
1775
- }
1776
- }
1777
- }
1778
- 1 = {
1779
- trigger = {
1780
- owner = {
1781
- has_estate = estate_rajput
1782
- NOT = {
1783
- estate_loyalty = {
1784
- estate = estate_rajput
1785
- loyalty = 30
1786
- }
1787
- }
1788
- }
1789
- }
1790
- spawn_rebels = {
1791
- type = noble_rebels
1792
- size = $size$
1793
- estate = estate_rajput
1794
- as_if_faction = yes
1795
- }
5576
+ }
5577
+ generate_estate_advisor = {
5578
+ estate = estate_maratha
5579
+ type = commandant
5580
+ }
5581
+ }
5582
+ estate_action_RECRUIT_MARATHI_TROOPS_MARATHA = {
5583
+ #estate_action_yearly_manpower = {
5584
+ # estate = estate_maratha
5585
+ #}
5586
+ estate_action_scaling_modifier = {
5587
+ estate = estate_maratha
5588
+ name = DEMAND_MORE_TROOPS_NOBLES
5589
+ duration = 7300
5590
+ }
5591
+ add_estate_loyalty = {
5592
+ estate = estate_maratha
5593
+ loyalty = -15
5594
+ }
5595
+ }
5596
+ estate_action_DEMAND_SUPPORT_MARATHA = {
5597
+ estate_action_monarch_power = {
5598
+ estate = estate_maratha
5599
+ type = mil
5600
+ }
5601
+ add_estate_loyalty = {
5602
+ estate = estate_maratha
5603
+ loyalty = -20
5604
+ }
5605
+ }
5606
+ estate_action_CALL_DIET_NOBLES = {
5607
+ add_prestige = -5
5608
+ add_estate_loyalty = {
5609
+ estate = estate_nobles
5610
+ loyalty = 15
5611
+ }
5612
+ add_estate_influence_modifier = {
5613
+ estate = estate_nobles
5614
+ desc = EST_VAL_DIET_HELD
5615
+ influence = 10
5616
+ duration = 7300
5617
+ }
5618
+ auto_complete_estate_agenda = {
5619
+ estate = estate_nobles
5620
+ }
5621
+ if = {
5622
+ limit = {
5623
+ has_estate = estate_rajput
5624
+ }
5625
+ add_estate_loyalty = {
5626
+ estate = estate_rajput
5627
+ loyalty = -15
5628
+ }
5629
+ }
5630
+ else_if = {
5631
+ limit = {
5632
+ has_estate = estate_maratha
5633
+ }
5634
+ add_estate_loyalty = {
5635
+ estate = estate_maratha
5636
+ loyalty = -15
5637
+ }
5638
+ }
5639
+ if = {
5640
+ limit = {
5641
+ has_estate = estate_ghulams
5642
+ }
5643
+ add_estate_loyalty = {
5644
+ estate = estate_ghulams
5645
+ loyalty = -15
5646
+ }
5647
+ }
5648
+ if = {
5649
+ limit = {
5650
+ has_estate = estate_qizilbash
5651
+ }
5652
+ add_estate_loyalty = {
5653
+ estate = estate_qizilbash
5654
+ loyalty = -15
5655
+ }
5656
+ }
5657
+ }
5658
+ estate_action_GRANT_GENERALSHIP_NOBLES = {
5659
+ create_leader_scaling_with_tradition = {
5660
+ leader = general
5661
+ type = army
5662
+ }
5663
+ #add_estate_influence_modifier = {
5664
+ # estate = estate_nobles
5665
+ # desc = EST_VAL_GRANTED_GENERALSHIP
5666
+ # influence = 20
5667
+ # duration = 3650
5668
+ #}
5669
+ add_estate_loyalty = {
5670
+ estate = estate_nobles
5671
+ loyalty = -10
5672
+ }
5673
+ if = {
5674
+ limit = {
5675
+ has_estate = estate_rajput
5676
+ }
5677
+ add_estate_loyalty = {
5678
+ estate = estate_rajput
5679
+ loyalty = -5
5680
+ }
5681
+ }
5682
+ else_if = {
5683
+ limit = {
5684
+ has_estate = estate_maratha
5685
+ }
5686
+ add_estate_loyalty = {
5687
+ estate = estate_maratha
5688
+ loyalty = -5
5689
+ }
5690
+ }
5691
+ if = {
5692
+ limit = {
5693
+ has_estate = estate_qizilbash
5694
+ }
5695
+ add_estate_loyalty = {
5696
+ estate = estate_qizilbash
5697
+ loyalty = -5
5698
+ }
5699
+ }
5700
+ if = {
5701
+ limit = {
5702
+ has_estate = estate_ghulams
5703
+ }
5704
+ add_estate_loyalty = {
5705
+ estate = estate_ghulams
5706
+ loyalty = -5
5707
+ }
5708
+ }
5709
+ }
5710
+ estate_action_RECRUIT_CONQUISTADOR_ESTATES_NOBLES = {
5711
+ create_leader_scaling_with_tradition = {
5712
+ leader = conquistador
5713
+ type = army
5714
+ }
5715
+ #add_estate_influence_modifier = {
5716
+ # estate = estate_nobles
5717
+ # desc = EST_VAL_RECRUITED_CONQUISTADOR
5718
+ # influence = 15
5719
+ # duration = 5475
5720
+ #}
5721
+ add_estate_loyalty = {
5722
+ estate = estate_nobles
5723
+ loyalty = -15
5724
+ }
5725
+ }
5726
+ estate_action_DEMAND_SUPPORT_NOBLES = {
5727
+ estate_action_monarch_power = {
5728
+ estate = estate_nobles
5729
+ type = mil
5730
+ }
5731
+ add_estate_loyalty = {
5732
+ estate = estate_nobles
5733
+ loyalty = -20
5734
+ }
5735
+ }
5736
+ estate_action_RECRUIT_MINISTER_NOBLES = {
5737
+ generate_estate_advisor = {
5738
+ estate = estate_nobles
5739
+ type = diplomat
5740
+ }
5741
+ #add_estate_influence_modifier = {
5742
+ # estate = estate_nobles
5743
+ # desc = EST_VAL_NOBLES_MINISTER
5744
+ # influence = 15
5745
+ # duration = 10950
5746
+ #}
5747
+ add_estate_loyalty = {
5748
+ estate = estate_nobles
5749
+ loyalty = -10
5750
+ }
5751
+ if = {
5752
+ limit = {
5753
+ has_estate = estate_rajput
5754
+ }
5755
+ add_estate_loyalty = {
5756
+ estate = estate_rajput
5757
+ loyalty = -5
1796
5758
  }
1797
- 1 = {
1798
- trigger = {
1799
- owner = {
1800
- has_estate = estate_maratha
1801
- NOT = {
1802
- estate_loyalty = {
1803
- estate = estate_maratha
1804
- loyalty = 30
1805
- }
1806
- }
1807
- }
1808
- }
1809
- spawn_rebels = {
1810
- type = noble_rebels
1811
- size = $size$
1812
- estate = estate_maratha
1813
- as_if_faction = yes
1814
- }
5759
+ }
5760
+ else_if = {
5761
+ limit = {
5762
+ has_estate = estate_maratha
1815
5763
  }
1816
- 1 = {
1817
- trigger = {
1818
- owner = {
1819
- has_estate = estate_burghers
1820
- NOT = {
1821
- estate_loyalty = {
1822
- estate = estate_burghers
1823
- loyalty = 30
1824
- }
1825
- }
1826
- }
1827
- }
1828
- spawn_rebels = {
1829
- type = particularist_rebels
1830
- size = $size$
1831
- estate = estate_burghers
1832
- as_if_faction = yes
1833
- }
5764
+ add_estate_loyalty = {
5765
+ estate = estate_maratha
5766
+ loyalty = -5
1834
5767
  }
1835
- 1 = {
1836
- trigger = {
1837
- owner = {
1838
- has_estate = estate_jains
1839
- NOT = {
1840
- estate_loyalty = {
1841
- estate = estate_jains
1842
- loyalty = 30
1843
- }
1844
- }
1845
- }
1846
- }
1847
- spawn_rebels = {
1848
- type = particularist_rebels
1849
- size = $size$
1850
- estate = estate_jains
1851
- as_if_faction = yes
1852
- }
5768
+ }
5769
+ if = {
5770
+ limit = {
5771
+ has_estate = estate_qizilbash
1853
5772
  }
1854
- 1 = {
1855
- trigger = {
1856
- owner = {
1857
- has_estate = estate_vaisyas
1858
- NOT = {
1859
- estate_loyalty = {
1860
- estate = estate_vaisyas
1861
- loyalty = 30
1862
- }
1863
- }
1864
- }
1865
- }
1866
- spawn_rebels = {
1867
- type = particularist_rebels
1868
- size = $size$
1869
- estate = estate_vaisyas
1870
- as_if_faction = yes
1871
- }
5773
+ add_estate_loyalty = {
5774
+ estate = estate_qizilbash
5775
+ loyalty = -5
1872
5776
  }
1873
- 1 = {
1874
- trigger = {
1875
- owner = {
1876
- has_estate = estate_dhimmi
1877
- NOT = {
1878
- estate_loyalty = {
1879
- estate = estate_dhimmi
1880
- loyalty = 30
1881
- }
1882
- }
1883
- }
1884
- }
1885
- spawn_rebels = {
1886
- type = particularist_rebels
1887
- size = $size$
1888
- estate = estate_dhimmi
1889
- as_if_faction = yes
1890
- }
5777
+ }
5778
+ if = {
5779
+ limit = {
5780
+ has_estate = estate_ghulams
1891
5781
  }
1892
- 1 = {
1893
- trigger = {
1894
- owner = {
1895
- has_estate = estate_brahmins
1896
- NOT = {
1897
- estate_loyalty = {
1898
- estate = estate_brahmins
1899
- loyalty = 30
1900
- }
1901
- }
1902
- }
1903
- }
1904
- spawn_rebels = {
1905
- type = hinduism_rebels
1906
- size = $size$
1907
- estate = estate_brahmins
1908
- as_if_faction = yes
1909
- }
5782
+ add_estate_loyalty = {
5783
+ estate = estate_ghulams
5784
+ loyalty = -5
1910
5785
  }
1911
- 1 = {
1912
- trigger = {
1913
- owner = {
1914
- has_estate = estate_cossacks
1915
- NOT = {
1916
- estate_loyalty = {
1917
- estate = estate_cossacks
1918
- loyalty = 30
1919
- }
1920
- }
1921
- }
1922
- }
1923
- spawn_rebels = {
1924
- type = cossack_rebels
1925
- size = $size$
1926
- estate = estate_cossacks
1927
- as_if_faction = yes
1928
- }
5786
+ }
5787
+ }
5788
+ estate_action_DEMAND_MORE_TROOPS_NOBLES = {
5789
+ #estate_action_yearly_manpower = {
5790
+ # estate = estate_nobles
5791
+ #}
5792
+ estate_action_scaling_modifier = {
5793
+ estate = estate_nobles
5794
+ name = DEMAND_MORE_TROOPS_NOBLES
5795
+ duration = 7300
5796
+ }
5797
+ add_estate_loyalty = {
5798
+ estate = estate_nobles
5799
+ loyalty = -15
5800
+ }
5801
+ }
5802
+ estate_action_SUPPORT_TRIBES_NOMADIC_TRIBES = {
5803
+ add_years_of_income = -0.25
5804
+ add_estate_loyalty = {
5805
+ estate = estate_nomadic_tribes
5806
+ loyalty = 10
5807
+ }
5808
+ }
5809
+ estate_action_CONTRIBUTE_WARRIORS_NOMADIC_TRIBES = {
5810
+ #add_yearly_manpower = 2.5
5811
+ estate_action_scaling_modifier = {
5812
+ estate = estate_nomadic_tribes
5813
+ name = CONTRIBUTE_WARRIORS_NOMADIC_TRIBES
5814
+ duration = 3650
5815
+ }
5816
+ add_estate_loyalty = {
5817
+ estate = estate_nomadic_tribes
5818
+ loyalty = -15
5819
+ }
5820
+ }
5821
+ estate_action_RAISE_HOST_NOMADIC_TRIBES = {
5822
+ capital_scope = {
5823
+ add_unit_construction = {
5824
+ type = cavalry
5825
+ amount = 5
5826
+ speed = 0.25
5827
+ cost = 0
1929
5828
  }
1930
- 1 = {
1931
- trigger = {
1932
- owner = {
1933
- has_estate = estate_nomadic_tribes
1934
- NOT = {
1935
- estate_loyalty = {
1936
- estate = estate_nomadic_tribes
1937
- loyalty = 30
1938
- }
1939
- }
1940
- }
1941
- }
1942
- spawn_rebels = {
1943
- type = tribal_rebels
1944
- size = $size$
1945
- estate = estate_nomadic_tribes
1946
- as_if_faction = yes
1947
- }
5829
+ }
5830
+ create_leader_scaling_with_tradition = {
5831
+ type = army
5832
+ leader = general
5833
+ }
5834
+ add_estate_influence_modifier = {
5835
+ estate = estate_nomadic_tribes
5836
+ desc = EST_VAL_RAISED_HOST
5837
+ influence = 15
5838
+ duration = 3650
5839
+ }
5840
+ }
5841
+ estate_action_REDISTRIBUTE_HORDE_AUTHORITY_TRIBES = {
5842
+ add_horde_unity = -5
5843
+ add_estate_loyalty = {
5844
+ estate = estate_nomadic_tribes
5845
+ loyalty = 15
5846
+ }
5847
+ auto_complete_estate_agenda = {
5848
+ estate = estate_nomadic_tribes
5849
+ }
5850
+ }
5851
+ estate_action_STRENGTHEN_TRIBAL_AUTONOMY = {
5852
+ estate_action_monarch_power = {
5853
+ estate = estate_nomadic_tribes
5854
+ type = mil
5855
+ }
5856
+ estate_action_tradition = {
5857
+ estate = estate_nomadic_tribes
5858
+ type = army
5859
+ }
5860
+ add_estate_influence_modifier = {
5861
+ estate = estate_nomadic_tribes
5862
+ desc = EST_VAL_STRENGTHENED_TRIBAL_AUTONOMY
5863
+ influence = 10
5864
+ duration = 3650
5865
+ }
5866
+ }
5867
+ estate_action_RECRUIT_MINISTER_NOMADIC_TRIBES = {
5868
+ generate_estate_advisor = {
5869
+ estate = estate_nomadic_tribes
5870
+ type = recruitmaster
5871
+ }
5872
+ #add_estate_influence_modifier = {
5873
+ # estate = estate_nomadic_tribes
5874
+ # desc = EST_VAL_NOMAD_MINISTER
5875
+ # influence = 15
5876
+ # duration = 10950
5877
+ #}
5878
+ add_estate_loyalty = {
5879
+ estate = estate_nomadic_tribes
5880
+ loyalty = -10
5881
+ }
5882
+ }
5883
+ estate_action_RECRUIT_RAJPUT_GENERAL_RAJPUT = {
5884
+ custom_tooltip = rajput_general.tooltip
5885
+ hidden_effect = {
5886
+ create_general = {
5887
+ tradition = 40
5888
+ add_fire = 1
5889
+ culture = rajput
5890
+ }
5891
+ }
5892
+ add_estate_influence_modifier = {
5893
+ estate = estate_rajput
5894
+ desc = EST_VAL_GRANTED_GENERALSHIP
5895
+ influence = 20
5896
+ duration = 3650
5897
+ }
5898
+ if = {
5899
+ limit = {
5900
+ has_estate = estate_nobles
5901
+ }
5902
+ add_estate_loyalty = {
5903
+ estate = estate_nobles
5904
+ loyalty = -5
1948
5905
  }
1949
5906
  }
1950
5907
  }
1951
-
1952
- pick_random_estate_if_present = {
1953
- random_list = {
1954
- 1 = {
1955
- trigger = {
1956
- has_estate = estate_brahmins
1957
- NOT = { has_country_flag = estate_brahmins_$flag$ }
1958
- }
1959
- set_country_flag = estate_brahmins_$flag$
1960
- [[estate_action]
1961
- $estate_action$ = estate_brahmins
1962
- ]
5908
+ estate_action_LOOK_UP_PURBIAS_RAJPUT = {
5909
+ if = {
5910
+ limit = {
5911
+ has_reform = governmental_purbias_register_reform
1963
5912
  }
1964
- 1 = {
1965
- trigger = {
1966
- has_estate = estate_church
1967
- NOT = { has_country_flag = estate_church_$flag$ }
1968
- }
1969
- set_country_flag = estate_church_$flag$
1970
- [[estate_action]
1971
- $estate_action$ = estate_church
1972
- ]
5913
+ add_country_modifier = {
5914
+ name = "look_up_purbias_upgraded"
5915
+ duration = 3650
1973
5916
  }
1974
- 1 = {
1975
- trigger = {
1976
- has_estate = estate_maratha
1977
- NOT = { has_country_flag = estate_maratha_$flag$ }
1978
- }
1979
- set_country_flag = estate_maratha_$flag$
1980
- [[estate_action]
1981
- $estate_action$ = estate_maratha
1982
- ]
5917
+ }
5918
+ else = {
5919
+ add_country_modifier = {
5920
+ name = "look_up_purbias"
5921
+ duration = 3650
1983
5922
  }
1984
- 1 = {
1985
- trigger = {
1986
- has_estate = estate_nobles
1987
- NOT = { has_country_flag = estate_nobles_$flag$ }
1988
- }
1989
- set_country_flag = estate_nobles_$flag$
1990
- [[estate_action]
1991
- $estate_action$ = estate_nobles
1992
- ]
5923
+ }
5924
+ add_years_of_income = -0.25
5925
+ }
5926
+ estate_action_DEMAND_SUPPORT_RAJPUT = {
5927
+ estate_action_monarch_power = {
5928
+ estate = estate_rajput
5929
+ type = mil
5930
+ }
5931
+ add_estate_loyalty = {
5932
+ estate = estate_rajput
5933
+ loyalty = -20
5934
+ }
5935
+ }
5936
+ estate_action_EXEMPT_FROM_JIZYA_RAJPUT = {
5937
+ add_years_of_income = -0.5
5938
+ add_estate_loyalty = {
5939
+ estate = estate_rajput
5940
+ loyalty = 15
5941
+ }
5942
+ if = {
5943
+ limit = {
5944
+ has_estate = estate_nobles
1993
5945
  }
1994
- 1 = {
1995
- trigger = {
1996
- has_estate = estate_burghers
1997
- NOT = { has_country_flag = estate_burghers_$flag$ }
1998
- }
1999
- set_country_flag = estate_burghers_$flag$
2000
- [[estate_action]
2001
- $estate_action$ = estate_burghers
2002
- ]
5946
+ add_estate_loyalty = {
5947
+ estate = estate_nobles
5948
+ loyalty = -15
2003
5949
  }
2004
- 1 = {
2005
- trigger = {
2006
- has_estate = estate_vaisyas
2007
- NOT = { has_country_flag = estate_vaisyas_$flag$ }
2008
- }
2009
- set_country_flag = estate_vaisyas_$flag$
2010
- [[estate_action]
2011
- $estate_action$ = estate_vaisyas
2012
- ]
5950
+ }
5951
+ }
5952
+ estate_action_PROMOTE_RAJPUT_NOBILITY_RAJPUT = {
5953
+ add_prestige = -5
5954
+ add_estate_influence_modifier = {
5955
+ estate = estate_rajput
5956
+ desc = EST_VAL_PROMOTED_RAJPUTS
5957
+ influence = 10
5958
+ duration = 7300
5959
+ }
5960
+ add_estate_loyalty = {
5961
+ estate = estate_rajput
5962
+ loyalty = 15
5963
+ }
5964
+ auto_complete_estate_agenda = {
5965
+ estate = estate_rajput
5966
+ }
5967
+ if = {
5968
+ limit = {
5969
+ has_estate = estate_nobles
2013
5970
  }
2014
- 1 = {
2015
- trigger = {
2016
- has_estate = estate_cossacks
2017
- NOT = { has_country_flag = estate_cossacks_$flag$ }
2018
- }
2019
- set_country_flag = estate_cossacks_$flag$
2020
- [[estate_action]
2021
- $estate_action$ = estate_cossacks
2022
- ]
5971
+ add_estate_loyalty = {
5972
+ estate = estate_nobles
5973
+ loyalty = -15
2023
5974
  }
2024
- 1 = {
2025
- trigger = {
2026
- has_estate = estate_nomadic_tribes
2027
- NOT = { has_country_flag = estate_nomadic_tribes_$flag$ }
2028
- }
2029
- set_country_flag = estate_nomadic_tribes_$flag$
2030
- [[estate_action]
2031
- $estate_action$ = estate_nomadic_tribes
2032
- ]
5975
+ }
5976
+ }
5977
+ estate_action_RECRUIT_RAJPUT_TROOPS_RAJPUT = {
5978
+ #estate_action_yearly_manpower = {
5979
+ # estate = estate_rajput
5980
+ #}
5981
+ estate_action_scaling_modifier = {
5982
+ estate = estate_rajput
5983
+ name = DEMAND_MORE_TROOPS_NOBLES
5984
+ duration = 7300
5985
+ }
5986
+ add_estate_loyalty = {
5987
+ estate = estate_rajput
5988
+ loyalty = -15
5989
+ }
5990
+ }
5991
+ estate_action_ASK_FOR_CONTRIBUTION_VAISYAS = {
5992
+ #estate_action_years_of_income = {
5993
+ # estate = estate_vaisyas
5994
+ #}
5995
+ estate_action_scaling_modifier = {
5996
+ estate = estate_vaisyas
5997
+ name = ASK_FOR_CONTRIBUTION_VAISYAS
5998
+ duration = 3650
5999
+ }
6000
+ add_estate_loyalty = {
6001
+ estate = estate_vaisyas
6002
+ loyalty = -10
6003
+ }
6004
+ }
6005
+ estate_action_DEMAND_SUPPORT_VAISYAS = {
6006
+ estate_action_monarch_power = {
6007
+ estate = estate_vaisyas
6008
+ type = dip
6009
+ }
6010
+ add_estate_loyalty = {
6011
+ estate = estate_vaisyas
6012
+ loyalty = -20
6013
+ }
6014
+ }
6015
+ estate_action_SEEK_GUILD_SUPPORT_VAISYAS = {
6016
+ add_prestige = -5
6017
+ add_estate_influence_modifier = {
6018
+ estate = estate_vaisyas
6019
+ desc = EST_VAL_GUILD_SUPPORT
6020
+ influence = 10
6021
+ duration = 7300
6022
+ }
6023
+ add_estate_loyalty = {
6024
+ estate = estate_vaisyas
6025
+ loyalty = 15
6026
+ }
6027
+ auto_complete_estate_agenda = {
6028
+ estate = estate_vaisyas
6029
+ }
6030
+ }
6031
+ estate_action_RECRUIT_MINISTER_VAISYAS = {
6032
+ generate_estate_advisor = {
6033
+ estate = estate_vaisyas
6034
+ type = master_of_mint
6035
+ }
6036
+ #add_estate_influence_modifier = {
6037
+ # estate = estate_vaisyas
6038
+ # desc = EST_VAL_BURGHER_MINISTER
6039
+ # influence = 15
6040
+ # duration = 10950
6041
+ #}
6042
+ add_estate_loyalty = {
6043
+ estate = estate_vaisyas
6044
+ loyalty = -10
6045
+ }
6046
+ }
6047
+ estate_action_COMISSION_MERCHANT_SHIPS_FOR_WAR_VAISYAS = {
6048
+ #add_estate_loyalty = {
6049
+ # estate = estate_vaisyas
6050
+ # loyalty = -15
6051
+ #}
6052
+ add_ship_construction_scaled_to_ports = {
6053
+ type = heavy_ship
6054
+ }
6055
+ }
6056
+ estate_action_GRANT_QIZILBASH_HORSES = {
6057
+ capital_scope = {
6058
+ create_units_of_type_in_province = {
6059
+ custom_tooltip = 4_QIZILBASH_CAVALRY_FOR_ROOT
6060
+ amount = 4
6061
+ unit_type = qizilbash_cavalry
6062
+ who = root
2033
6063
  }
2034
- 1 = {
2035
- trigger = {
2036
- has_estate = estate_dhimmi
2037
- NOT = { has_country_flag = estate_dhimmi_$flag$ }
2038
- }
2039
- set_country_flag = estate_dhimmi_$flag$
2040
- [[estate_action]
2041
- $estate_action$ = estate_dhimmi
2042
- ]
6064
+ }
6065
+ add_estate_influence_modifier = {
6066
+ estate = estate_qizilbash
6067
+ desc = EST_GRANT_QIZILBASH_HORSES
6068
+ influence = 10
6069
+ duration = 7300
6070
+ }
6071
+ auto_complete_estate_agenda = {
6072
+ estate = estate_qizilbash
6073
+ }
6074
+ if = {
6075
+ limit = {
6076
+ has_estate = estate_ghulams
6077
+ }
6078
+ add_estate_loyalty = {
6079
+ estate = estate_ghulams
6080
+ loyalty = -15
2043
6081
  }
2044
- 1 = {
2045
- trigger = {
2046
- has_estate = estate_jains
2047
- NOT = { has_country_flag = estate_jains_$flag$ }
2048
- }
2049
- set_country_flag = estate_jains_$flag$
2050
- [[estate_action]
2051
- $estate_action$ = estate_jains
2052
- ]
6082
+ }
6083
+ if = {
6084
+ limit = {
6085
+ has_estate = estate_nobles
2053
6086
  }
2054
- 1 = {
2055
- trigger = {
2056
- has_estate = estate_rajput
2057
- NOT = { has_country_flag = estate_rajput_$flag$ }
2058
- }
2059
- set_country_flag = estate_rajput_$flag$
2060
- [[estate_action]
2061
- $estate_action$ = estate_rajput
2062
- ]
6087
+ add_estate_loyalty = {
6088
+ estate = estate_nobles
6089
+ loyalty = -15
2063
6090
  }
2064
6091
  }
2065
6092
  }
2066
-
2067
- # estate = what estate
2068
- # Will give the estate 1% land
2069
- give_estate_land_share_small = {
2070
- change_estate_land_share = {
2071
- estate = $estate$
2072
- share = 1
6093
+ estate_action_PROMOTE_CAUCASIAN_TROOPS = {
6094
+ add_yearly_manpower = 0.5
6095
+ add_estate_influence_modifier = {
6096
+ estate = estate_ghulams
6097
+ desc = EST_PROMOTE_CAUCASIAN_TROOPS
6098
+ influence = 10
6099
+ duration = 7300
2073
6100
  }
2074
- }
2075
-
2076
- # estate = what estate
2077
- # Will give the estate 2% land
2078
- give_estate_land_share_medium = {
2079
- change_estate_land_share = {
2080
- estate = $estate$
2081
- share = 2
6101
+ auto_complete_estate_agenda = {
6102
+ estate = estate_ghulams
6103
+ }
6104
+ if = {
6105
+ limit = {
6106
+ has_estate = estate_nobles
6107
+ }
6108
+ add_estate_loyalty = {
6109
+ estate = estate_nobles
6110
+ loyalty = -15
6111
+ }
6112
+ }
6113
+ if = {
6114
+ limit = {
6115
+ has_estate = estate_qizilbash
6116
+ }
6117
+ add_estate_loyalty = {
6118
+ estate = estate_qizilbash
6119
+ loyalty = -15
6120
+ }
2082
6121
  }
2083
6122
  }
2084
6123
 
2085
- # estate = what estate
2086
- # Will give the estate 3% land
2087
- give_estate_land_share_large = {
2088
- change_estate_land_share = {
2089
- estate = $estate$
2090
- share = 3
2091
- }
6124
+ # Supports the following paramters
6125
+ ###########################################
6126
+ # MAKE_GENEROUS_DONATION_BRAHMINS
6127
+ # SEEK_SUPPORT_OF_BRAHMINS
6128
+ # RECRUIT_MINISTER_BRAHMINS
6129
+ # RECRUIT_INQUISITOR_BRAHMINS
6130
+ # DEMAND_SUPPORT_BRAHMINS
6131
+ # SEEK_BRAHMIN_LEGITIMACY_BRAHMINS
6132
+ # ASK_FOR_CONTRIBUTION_BURGHERS
6133
+ # DEMAND_SUPPORT_BURGHERS
6134
+ # GRANT_MONOPOLY_CHARTER_BURGHERS
6135
+ # RECRUIT_MINISTER_BURGHERS
6136
+ # GRANT_ADMIRALSHIP_BURGHERS
6137
+ # GRANT_NEW_WORLD_CHARTER_BURGHERS
6138
+ # COMISSION_MERCHANT_SHIPS_FOR_WAR_BURGHERS
6139
+ # MAKE_GENEROUS_DONATION_CHURCH
6140
+ # RECRUIT_MINISTER_CHURCH
6141
+ # RECRUIT_INQUISITOR_CHURCH
6142
+ # RELIGIOUS_DELEGATION_CHURCH
6143
+ # DEMAND_SUPPORT_CHURCH
6144
+ # SEEK_SUPPORT_OF_CLERGY_CHURCH
6145
+ # NEW_WORLD_MISSION_CHURCH
6146
+ # EXPAND_COSSACK_REGISTRY_COSSACKS
6147
+ # RAISE_COSSACK_HOST_COSSACKS
6148
+ # COSSACK_CONQUISTADOR_COSSACKS
6149
+ # RECRUIT_MINISTER_COSSACKS
6150
+ # CONSCRIPT_COSSACK_ELITE_COSSACKS
6151
+ # SUPPLY_ARMS_COSSACKS
6152
+ # PERMIT_SELF_GOVERNANCE_COSSACKS
6153
+ # RECRUIT_MINISTER_DHIMMI
6154
+ # LIGHTEN_DHIMMI_TAX_BURDEN_DHIMMI
6155
+ # PROMOTE_DHIMMI_NOBLES_DHIMMI
6156
+ # RECRUIT_FROM_THE_DHIMMI_DHIMMI
6157
+ # DEMAND_CONTRIBUTION_DHIMMI
6158
+ # PROCURE_LOANS_JAINS
6159
+ # INVESTIGATE_CORRUPTION_JAINS
6160
+ # PATRONIZE_JAIN_FAMILIES_JAINS
6161
+ # COMMISSION_JAIN_SCRIPTURES_JAINS
6162
+ # DEMAND_SUPPORT_JAINS
6163
+ # PROMOTE_MARATHA_NOBILITY_MARATHA
6164
+ # RECRUIT_MINISTER_MARATHA
6165
+ # RECRUIT_MARATHI_TROOPS_MARATHA
6166
+ # DEMAND_SUPPORT_MARATHA
6167
+ # CALL_DIET_NOBLES
6168
+ # GRANT_GENERALSHIP_NOBLES
6169
+ # RECRUIT_CONQUISTADOR_ESTATES_NOBLES
6170
+ # DEMAND_SUPPORT_NOBLES
6171
+ # RECRUIT_MINISTER_NOBLES
6172
+ # DEMAND_MORE_TROOPS_NOBLES
6173
+ # SUPPORT_TRIBES_NOMADIC_TRIBES
6174
+ # CONTRIBUTE_WARRIORS_NOMADIC_TRIBES
6175
+ # RAISE_HOST_NOMADIC_TRIBES
6176
+ # RECRUIT_MINISTER_NOMADIC_TRIBES
6177
+ # RECRUIT_RAJPUT_GENERAL_RAJPUT
6178
+ # LOOK_UP_PURBIAS_RAJPUT
6179
+ # DEMAND_SUPPORT_RAJPUT
6180
+ # EXEMPT_FROM_JIZYA_RAJPUT
6181
+ # PROMOTE_RAJPUT_NOBILITY_RAJPUT
6182
+ # ASK_FOR_CONTRIBUTION_VAISYAS
6183
+ # DEMAND_SUPPORT_VAISYAS
6184
+ # SEEK_GUILD_SUPPORT_VAISYAS
6185
+ # RECRUIT_MINISTER_VAISYAS
6186
+ # COMISSION_MERCHANT_SHIPS_FOR_WAR_VAISYAS
6187
+ # GRANT_QIZILBASH_HORSES
6188
+ # PROMOTE_CAUCASIAN_TROOPS
6189
+ estate_action = {
6190
+ estate_action_$estate_action$ = yes
2092
6191
  }
2093
6192
 
2094
- # estate = what estate
2095
- # Will give the estate 5% land
2096
- give_estate_land_share_massive = {
2097
- change_estate_land_share = {
2098
- estate = $estate$
2099
- share = 5
6193
+ enable_estate_action = {
6194
+ custom_tooltip = enable_estate_action_$estate_action$_tt
6195
+ custom_tooltip = estate_action_potential_effect
6196
+ tooltip = {
6197
+ estate_action_$estate_action$ = yes
6198
+ }
6199
+ hidden_effect = {
6200
+ set_country_flag = enable_estate_action_$estate_action$
2100
6201
  }
2101
6202
  }
2102
6203
 
2103
- # estate = what estate
2104
- # Will give the estate 10% land
2105
- give_estate_land_share_gigantic = {
2106
- change_estate_land_share = {
2107
- estate = $estate$
2108
- share = 10
6204
+ disable_estate_action = {
6205
+ custom_tooltip = disable_estate_action_$estate_action$_tt
6206
+ hidden_effect = {
6207
+ clr_country_flag = enable_estate_action_$estate_action$
2109
6208
  }
2110
6209
  }
2111
6210
 
2112
- give_estate_land_share_init = {
2113
- change_estate_land_share = {
2114
- estate = $estate$
2115
- share = 20
6211
+ set_estate_action_cooldown = {
6212
+ hidden_effect = {
6213
+ clr_country_flag = $estate_action$_flag
6214
+ set_country_flag = $estate_action$_flag
2116
6215
  }
2117
6216
  }
2118
6217
 
2119
- # estate = what estate
2120
- # Will take the 1% land from estate
2121
- take_estate_land_share_small = {
2122
- change_estate_land_share = {
2123
- estate = $estate$
2124
- share = -1
6218
+ increase_estate_action_counter = {
6219
+ hidden_effect = {
6220
+ change_variable = {
6221
+ which = general_estate_action_counter
6222
+ value = 1
6223
+ }
6224
+ change_variable = {
6225
+ which = $estate$_action_counter
6226
+ value = 1
6227
+ }
2125
6228
  }
2126
6229
  }
2127
6230
 
2128
- # estate = what estate
2129
- # Will take away 2% land from estate
2130
- take_estate_land_share_medium = {
2131
- change_estate_land_share = {
2132
- estate = $estate$
2133
- share = -2
6231
+ scaling_with_influence_privilege_tooltip = {
6232
+ custom_tooltip = scaling_with_estate_influence_tt
6233
+ custom_tooltip = when_loyal_tt
6234
+ tooltip = {
6235
+ add_country_modifier = {
6236
+ name = $estate_privilege$_loyal
6237
+ duration = -1
6238
+ desc = UNTIL_REVOKED
6239
+ }
6240
+ }
6241
+ custom_tooltip = when_neutral_tt
6242
+ tooltip = {
6243
+ add_country_modifier = {
6244
+ name = $estate_privilege$_neutral
6245
+ duration = -1
6246
+ desc = UNTIL_REVOKED
6247
+ }
6248
+ }
6249
+ custom_tooltip = when_disloyal_tt
6250
+ tooltip = {
6251
+ add_country_modifier = {
6252
+ name = $estate_privilege$_disloyal
6253
+ duration = -1
6254
+ desc = UNTIL_REVOKED
6255
+ }
2134
6256
  }
2135
6257
  }
2136
6258
 
2137
- # estate = what estate
2138
- # Will take the 3% land from estate
2139
- take_estate_land_share_large = {
2140
- change_estate_land_share = {
2141
- estate = $estate$
2142
- share = -3
6259
+ scaling_with_loyalty_privilege_tooltip = {
6260
+ custom_tooltip = scaling_with_estate_loyalty_tt
6261
+ tooltip = {
6262
+ add_country_modifier = {
6263
+ name = $estate_privilege$_scaling
6264
+ duration = -1
6265
+ desc = UNTIL_REVOKED
6266
+ }
2143
6267
  }
2144
6268
  }
2145
6269
 
2146
- # estate = what estate
2147
- # Will take the 5% land from estate
2148
- take_estate_land_share_massive = {
2149
- change_estate_land_share = {
2150
- estate = $estate$
2151
- share = -5
6270
+ block_estate_removing_reforms = {
6271
+ custom_tooltip = block_estate_removing_reforms_tt
6272
+ hidden_effect = {
6273
+ set_country_flag = block_$estate$_removing_reform
2152
6274
  }
2153
6275
  }
2154
6276
 
2155
- # estate = what estate
2156
- # Will take the 10% land from estate
2157
- take_estate_land_share_gigantic = {
2158
- change_estate_land_share = {
2159
- estate = $estate$
2160
- share = -10
6277
+ unblock_estate_removing_reforms = {
6278
+ custom_tooltip = unblock_estate_removing_reforms_tt
6279
+ hidden_effect = {
6280
+ clr_country_flag = block_$estate$_removing_reform
2161
6281
  }
2162
6282
  }
2163
6283
 
2164
- # Used to apply estate monopoly modifier based on the estate privilege name
2165
- # privilege = name of privilege
2166
- apply_estate_monopoly_modifier = {
6284
+ #Just write here a custom tooltip
6285
+ transfer_crownland_share = {
2167
6286
  if = {
2168
- limit = { owner = { has_estate_privilege = $privilege$ } }
2169
- add_province_modifier = {
2170
- name = $privilege$_mod
2171
- duration = -1
6287
+ limit = {
6288
+ has_estate = $from_estate$
6289
+ has_estate = $target_estate$
6290
+ }
6291
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
6292
+ hidden_effect = {
6293
+ set_variable = {
6294
+ which = amount_to_transfer
6295
+ value = $amount$
6296
+ }
6297
+ while = {
6298
+ limit = { check_variable = { which = amount_to_transfer value = 1 } }
6299
+ change_estate_land_share = { estate = $from_estate$ share = -1 }
6300
+ change_estate_land_share = { estate = $target_estate$ share = 1 }
6301
+ change_variable = { which = amount_to_transfer value = -1 }
6302
+ }
2172
6303
  }
2173
6304
  }
2174
6305
  }
2175
6306
 
2176
- remove_estate_monopoly_modifier = {
2177
- remove_province_modifier = $privilege$_mod
6307
+ transfer_percentage_crownland_share = {
6308
+ if = {
6309
+ limit = {
6310
+ has_estate = $from_estate$
6311
+ has_estate = $target_estate$
6312
+ }
6313
+ [[custom_tooltip]custom_tooltip = $custom_tooltip$]
6314
+ hidden_effect = {
6315
+ set_variable = {
6316
+ which = crownland_to_transfer
6317
+ value = 0
6318
+ }
6319
+ set_variable = {
6320
+ which = transferable_crownland
6321
+ value = 0
6322
+ }
6323
+ set_variable = {
6324
+ which = percentage_multiplier
6325
+ value = $amount$
6326
+ }
6327
+ #Calc how much in total Crownland there is to transfer
6328
+ while = {
6329
+ limit = { estate_territory = { estate = $from_estate$ territory = 1 } }
6330
+ change_estate_land_share = { estate = $from_estate$ share = -1 }
6331
+ change_variable = { which = transferable_crownland value = 1 }
6332
+ change_variable = { which = crownland_to_transfer value = 1 }
6333
+ }
6334
+ #Restore the stolen crownland
6335
+ while = {
6336
+ limit = { check_variable = { which = transferable_crownland value = 1 } }
6337
+ change_estate_land_share = { estate = $from_estate$ share = 1 }
6338
+ change_variable = { which = transferable_crownland value = -1 }
6339
+ }
6340
+ #Use the multiplier and then transfer the actual percentage of crownland
6341
+ multiply_variable = {
6342
+ which = crownland_to_transfer
6343
+ which = percentage_multiplier
6344
+ }
6345
+ while = {
6346
+ limit = { check_variable = { which = crownland_to_transfer value = 1 } }
6347
+ change_estate_land_share = { estate = $target_estate$ share = 1 }
6348
+ change_estate_land_share = { estate = $from_estate$ share = -1 }
6349
+ change_variable = { which = crownland_to_transfer value = -1 }
6350
+ }
6351
+ }
6352
+ }
2178
6353
  }
2179
6354
 
2180
- spawn_rebels_seize_land_switch = {
2181
- trigger_switch = {
2182
- on_trigger = num_of_owned_areas
2183
- 1000 = { custom_tooltip = estate_seize_land_interaction_tooltip_1000 seize_land_effect = { scale = 101 } }
2184
- 990 = { custom_tooltip = estate_seize_land_interaction_tooltip_990 seize_land_effect = { scale = 100 } }
2185
- 980 = { custom_tooltip = estate_seize_land_interaction_tooltip_980 seize_land_effect = { scale = 99 } }
2186
- 970 = { custom_tooltip = estate_seize_land_interaction_tooltip_970 seize_land_effect = { scale = 98 } }
2187
- 960 = { custom_tooltip = estate_seize_land_interaction_tooltip_960 seize_land_effect = { scale = 97 } }
2188
- 950 = { custom_tooltip = estate_seize_land_interaction_tooltip_950 seize_land_effect = { scale = 96 } }
2189
- 940 = { custom_tooltip = estate_seize_land_interaction_tooltip_940 seize_land_effect = { scale = 95 } }
2190
- 930 = { custom_tooltip = estate_seize_land_interaction_tooltip_930 seize_land_effect = { scale = 94 } }
2191
- 920 = { custom_tooltip = estate_seize_land_interaction_tooltip_920 seize_land_effect = { scale = 93 } }
2192
- 910 = { custom_tooltip = estate_seize_land_interaction_tooltip_910 seize_land_effect = { scale = 92 } }
2193
- 900 = { custom_tooltip = estate_seize_land_interaction_tooltip_900 seize_land_effect = { scale = 91 } }
2194
- 890 = { custom_tooltip = estate_seize_land_interaction_tooltip_890 seize_land_effect = { scale = 90 } }
2195
- 880 = { custom_tooltip = estate_seize_land_interaction_tooltip_880 seize_land_effect = { scale = 89 } }
2196
- 870 = { custom_tooltip = estate_seize_land_interaction_tooltip_870 seize_land_effect = { scale = 88 } }
2197
- 860 = { custom_tooltip = estate_seize_land_interaction_tooltip_860 seize_land_effect = { scale = 87 } }
2198
- 850 = { custom_tooltip = estate_seize_land_interaction_tooltip_850 seize_land_effect = { scale = 86 } }
2199
- 840 = { custom_tooltip = estate_seize_land_interaction_tooltip_840 seize_land_effect = { scale = 85 } }
2200
- 830 = { custom_tooltip = estate_seize_land_interaction_tooltip_830 seize_land_effect = { scale = 84 } }
2201
- 820 = { custom_tooltip = estate_seize_land_interaction_tooltip_820 seize_land_effect = { scale = 83 } }
2202
- 810 = { custom_tooltip = estate_seize_land_interaction_tooltip_810 seize_land_effect = { scale = 82 } }
2203
- 800 = { custom_tooltip = estate_seize_land_interaction_tooltip_800 seize_land_effect = { scale = 81 } }
2204
- 790 = { custom_tooltip = estate_seize_land_interaction_tooltip_790 seize_land_effect = { scale = 80 } }
2205
- 780 = { custom_tooltip = estate_seize_land_interaction_tooltip_780 seize_land_effect = { scale = 79 } }
2206
- 770 = { custom_tooltip = estate_seize_land_interaction_tooltip_770 seize_land_effect = { scale = 78 } }
2207
- 760 = { custom_tooltip = estate_seize_land_interaction_tooltip_760 seize_land_effect = { scale = 77 } }
2208
- 750 = { custom_tooltip = estate_seize_land_interaction_tooltip_750 seize_land_effect = { scale = 76 } }
2209
- 740 = { custom_tooltip = estate_seize_land_interaction_tooltip_740 seize_land_effect = { scale = 75 } }
2210
- 730 = { custom_tooltip = estate_seize_land_interaction_tooltip_730 seize_land_effect = { scale = 74 } }
2211
- 720 = { custom_tooltip = estate_seize_land_interaction_tooltip_720 seize_land_effect = { scale = 73 } }
2212
- 710 = { custom_tooltip = estate_seize_land_interaction_tooltip_710 seize_land_effect = { scale = 72 } }
2213
- 700 = { custom_tooltip = estate_seize_land_interaction_tooltip_700 seize_land_effect = { scale = 71 } }
2214
- 690 = { custom_tooltip = estate_seize_land_interaction_tooltip_690 seize_land_effect = { scale = 70 } }
2215
- 680 = { custom_tooltip = estate_seize_land_interaction_tooltip_680 seize_land_effect = { scale = 69 } }
2216
- 670 = { custom_tooltip = estate_seize_land_interaction_tooltip_670 seize_land_effect = { scale = 68 } }
2217
- 660 = { custom_tooltip = estate_seize_land_interaction_tooltip_660 seize_land_effect = { scale = 67 } }
2218
- 650 = { custom_tooltip = estate_seize_land_interaction_tooltip_650 seize_land_effect = { scale = 66 } }
2219
- 640 = { custom_tooltip = estate_seize_land_interaction_tooltip_640 seize_land_effect = { scale = 65 } }
2220
- 630 = { custom_tooltip = estate_seize_land_interaction_tooltip_630 seize_land_effect = { scale = 64 } }
2221
- 620 = { custom_tooltip = estate_seize_land_interaction_tooltip_620 seize_land_effect = { scale = 63 } }
2222
- 610 = { custom_tooltip = estate_seize_land_interaction_tooltip_610 seize_land_effect = { scale = 62 } }
2223
- 600 = { custom_tooltip = estate_seize_land_interaction_tooltip_600 seize_land_effect = { scale = 61 } }
2224
- 590 = { custom_tooltip = estate_seize_land_interaction_tooltip_590 seize_land_effect = { scale = 60 } }
2225
- 580 = { custom_tooltip = estate_seize_land_interaction_tooltip_580 seize_land_effect = { scale = 59 } }
2226
- 570 = { custom_tooltip = estate_seize_land_interaction_tooltip_570 seize_land_effect = { scale = 58 } }
2227
- 560 = { custom_tooltip = estate_seize_land_interaction_tooltip_560 seize_land_effect = { scale = 57 } }
2228
- 550 = { custom_tooltip = estate_seize_land_interaction_tooltip_550 seize_land_effect = { scale = 56 } }
2229
- 540 = { custom_tooltip = estate_seize_land_interaction_tooltip_540 seize_land_effect = { scale = 55 } }
2230
- 530 = { custom_tooltip = estate_seize_land_interaction_tooltip_530 seize_land_effect = { scale = 54 } }
2231
- 520 = { custom_tooltip = estate_seize_land_interaction_tooltip_520 seize_land_effect = { scale = 53 } }
2232
- 510 = { custom_tooltip = estate_seize_land_interaction_tooltip_510 seize_land_effect = { scale = 52 } }
2233
- 500 = { custom_tooltip = estate_seize_land_interaction_tooltip_500 seize_land_effect = { scale = 51 } }
2234
- 490 = { custom_tooltip = estate_seize_land_interaction_tooltip_490 seize_land_effect = { scale = 50 } }
2235
- 480 = { custom_tooltip = estate_seize_land_interaction_tooltip_480 seize_land_effect = { scale = 49 } }
2236
- 470 = { custom_tooltip = estate_seize_land_interaction_tooltip_470 seize_land_effect = { scale = 48 } }
2237
- 460 = { custom_tooltip = estate_seize_land_interaction_tooltip_460 seize_land_effect = { scale = 47 } }
2238
- 450 = { custom_tooltip = estate_seize_land_interaction_tooltip_450 seize_land_effect = { scale = 46 } }
2239
- 440 = { custom_tooltip = estate_seize_land_interaction_tooltip_440 seize_land_effect = { scale = 45 } }
2240
- 430 = { custom_tooltip = estate_seize_land_interaction_tooltip_430 seize_land_effect = { scale = 44 } }
2241
- 420 = { custom_tooltip = estate_seize_land_interaction_tooltip_420 seize_land_effect = { scale = 43 } }
2242
- 410 = { custom_tooltip = estate_seize_land_interaction_tooltip_410 seize_land_effect = { scale = 42 } }
2243
- 400 = { custom_tooltip = estate_seize_land_interaction_tooltip_400 seize_land_effect = { scale = 41 } }
2244
- 390 = { custom_tooltip = estate_seize_land_interaction_tooltip_390 seize_land_effect = { scale = 40 } }
2245
- 380 = { custom_tooltip = estate_seize_land_interaction_tooltip_380 seize_land_effect = { scale = 39 } }
2246
- 370 = { custom_tooltip = estate_seize_land_interaction_tooltip_370 seize_land_effect = { scale = 38 } }
2247
- 360 = { custom_tooltip = estate_seize_land_interaction_tooltip_360 seize_land_effect = { scale = 37 } }
2248
- 350 = { custom_tooltip = estate_seize_land_interaction_tooltip_350 seize_land_effect = { scale = 36 } }
2249
- 340 = { custom_tooltip = estate_seize_land_interaction_tooltip_340 seize_land_effect = { scale = 35 } }
2250
- 330 = { custom_tooltip = estate_seize_land_interaction_tooltip_330 seize_land_effect = { scale = 34 } }
2251
- 320 = { custom_tooltip = estate_seize_land_interaction_tooltip_320 seize_land_effect = { scale = 33 } }
2252
- 310 = { custom_tooltip = estate_seize_land_interaction_tooltip_310 seize_land_effect = { scale = 32 } }
2253
- 300 = { custom_tooltip = estate_seize_land_interaction_tooltip_300 seize_land_effect = { scale = 31 } }
2254
- 290 = { custom_tooltip = estate_seize_land_interaction_tooltip_290 seize_land_effect = { scale = 30 } }
2255
- 280 = { custom_tooltip = estate_seize_land_interaction_tooltip_280 seize_land_effect = { scale = 29 } }
2256
- 270 = { custom_tooltip = estate_seize_land_interaction_tooltip_270 seize_land_effect = { scale = 28 } }
2257
- 260 = { custom_tooltip = estate_seize_land_interaction_tooltip_260 seize_land_effect = { scale = 27 } }
2258
- 250 = { custom_tooltip = estate_seize_land_interaction_tooltip_250 seize_land_effect = { scale = 26 } }
2259
- 240 = { custom_tooltip = estate_seize_land_interaction_tooltip_240 seize_land_effect = { scale = 25 } }
2260
- 230 = { custom_tooltip = estate_seize_land_interaction_tooltip_230 seize_land_effect = { scale = 24 } }
2261
- 220 = { custom_tooltip = estate_seize_land_interaction_tooltip_220 seize_land_effect = { scale = 23 } }
2262
- 210 = { custom_tooltip = estate_seize_land_interaction_tooltip_210 seize_land_effect = { scale = 22 } }
2263
- 200 = { custom_tooltip = estate_seize_land_interaction_tooltip_200 seize_land_effect = { scale = 21 } }
2264
- 190 = { custom_tooltip = estate_seize_land_interaction_tooltip_190 seize_land_effect = { scale = 20 } }
2265
- 180 = { custom_tooltip = estate_seize_land_interaction_tooltip_180 seize_land_effect = { scale = 19 } }
2266
- 170 = { custom_tooltip = estate_seize_land_interaction_tooltip_170 seize_land_effect = { scale = 18 } }
2267
- 160 = { custom_tooltip = estate_seize_land_interaction_tooltip_160 seize_land_effect = { scale = 17 } }
2268
- 150 = { custom_tooltip = estate_seize_land_interaction_tooltip_150 seize_land_effect = { scale = 16 } }
2269
- 140 = { custom_tooltip = estate_seize_land_interaction_tooltip_140 seize_land_effect = { scale = 15 } }
2270
- 130 = { custom_tooltip = estate_seize_land_interaction_tooltip_130 seize_land_effect = { scale = 14 } }
2271
- 120 = { custom_tooltip = estate_seize_land_interaction_tooltip_120 seize_land_effect = { scale = 13 } }
2272
- 110 = { custom_tooltip = estate_seize_land_interaction_tooltip_110 seize_land_effect = { scale = 12 } }
2273
- 100 = { custom_tooltip = estate_seize_land_interaction_tooltip_100 seize_land_effect = { scale = 11 } }
2274
- 90 = { custom_tooltip = estate_seize_land_interaction_tooltip_90 seize_land_effect = { scale = 10 } }
2275
- 80 = { custom_tooltip = estate_seize_land_interaction_tooltip_80 seize_land_effect = { scale = 9 } }
2276
- 70 = { custom_tooltip = estate_seize_land_interaction_tooltip_70 seize_land_effect = { scale = 8 } }
2277
- 60 = { custom_tooltip = estate_seize_land_interaction_tooltip_60 seize_land_effect = { scale = 7 } }
2278
- 50 = { custom_tooltip = estate_seize_land_interaction_tooltip_50 seize_land_effect = { scale = 6 } }
2279
- 40 = { custom_tooltip = estate_seize_land_interaction_tooltip_40 seize_land_effect = { scale = 5 } }
2280
- 30 = { custom_tooltip = estate_seize_land_interaction_tooltip_30 seize_land_effect = { scale = 4 } }
2281
- 20 = { custom_tooltip = estate_seize_land_interaction_tooltip_20 seize_land_effect = { scale = 3 } }
2282
- 10 = { custom_tooltip = estate_seize_land_interaction_tooltip_10 seize_land_effect = { scale = 2 } }
2283
- 1 = { custom_tooltip = estate_seize_land_interaction_tooltip_1 seize_land_effect = { scale = 1 } }
6355
+ # Supports the following parameters
6356
+ ###########################################
6357
+ # estate_nobles
6358
+ # estate_brahmins
6359
+ # estate_burghers
6360
+ # estate_church
6361
+ # estate_cossacks
6362
+ # estate_dhimmi
6363
+ # estate_jains
6364
+ # estate_maratha
6365
+ # estate_nomadic_tribes
6366
+ # estate_rajput
6367
+ # estate_vaisyas
6368
+ # estate_janissaries
6369
+ # estate_eunuchs
6370
+ # estate_qizilbash
6371
+ # estate_ghulams
6372
+ # all - have ALL of them available
6373
+ select_grand_vizier_from_estate = {
6374
+ custom_tooltip = select_grand_vizier_from_estate_$estate$_tt
6375
+ add_estate_loyalty = {
6376
+ estate = $estate$
6377
+ loyalty = 10
6378
+ }
6379
+ add_estate_influence_modifier = {
6380
+ desc = GRAND_VIZIER_FROM_ESTATE
6381
+ estate = $estate$
6382
+ influence = 5
6383
+ duration = 3650
6384
+ short = yes
2284
6385
  }
6386
+ hidden_effect = {
6387
+ set_country_flag = selected_$type$_advisor
6388
+ set_country_flag = selected_grand_vizier_from_$estate$
6389
+ country_event = {
6390
+ id = estate_privileges_and_agendas_events.9
6391
+ }
6392
+ }
6393
+ }
6394
+ clr_grand_vizier_flags = {
6395
+ clr_country_flag = selected_grand_vizier_from_estate_nobles
6396
+ clr_country_flag = selected_grand_vizier_from_estate_brahmins
6397
+ clr_country_flag = selected_grand_vizier_from_estate_burghers
6398
+ clr_country_flag = selected_grand_vizier_from_estate_church
6399
+ clr_country_flag = selected_grand_vizier_from_estate_cossacks
6400
+ clr_country_flag = selected_grand_vizier_from_estate_dhimmi
6401
+ clr_country_flag = selected_grand_vizier_from_estate_jains
6402
+ clr_country_flag = selected_grand_vizier_from_estate_maratha
6403
+ clr_country_flag = selected_grand_vizier_from_estate_nomadic_tribes
6404
+ clr_country_flag = selected_grand_vizier_from_estate_rajput
6405
+ clr_country_flag = selected_grand_vizier_from_estate_vaisyas
6406
+ clr_country_flag = selected_grand_vizier_from_estate_janissaries
6407
+ clr_country_flag = selected_grand_vizier_from_estate_eunuchs
6408
+ clr_country_flag = selected_grand_vizier_from_estate_qizilbash
6409
+ clr_country_flag = selected_grand_vizier_from_estate_ghulams
6410
+ clr_country_flag = selected_grand_vizier_from_all
2285
6411
  }
common/scripted_effects/01_scripted_effects_for_on_actions.txt CHANGED
@@ -176,6 +176,179 @@ initialize_schools_effect = { #Used in on_startup on_action
176
176
  }
177
177
  }
178
178
 
179
+ on_new_monarch_effect = {
180
+ if = {
181
+ limit = {
182
+ has_consort_regency = no
183
+ any_owned_province = {
184
+ has_province_modifier = domain_of_spouses_family
185
+ }
186
+ }
187
+ every_owned_province = {
188
+ limit = { has_province_modifier = domain_of_spouses_family }
189
+ remove_province_modifier = domain_of_spouses_family
190
+ }
191
+ }
192
+ if = {
193
+ limit = {
194
+ has_consort_regency = no
195
+ any_owned_province = {
196
+ has_province_modifier = home_of_consort
197
+ }
198
+ }
199
+ every_owned_province = {
200
+ limit = { has_province_modifier = home_of_consort }
201
+ remove_province_modifier = home_of_consort
202
+ }
203
+ }
204
+ if = {
205
+ limit = {
206
+ NOT = { has_dlc = "Mandate of Heaven" }
207
+ has_country_modifier = the_mandate_of_heaven
208
+ NOT = { legitimacy = 80 }
209
+ }
210
+ country_event = { id = china_events.32 } # History of last ruler
211
+ }
212
+ if = {
213
+ limit = {
214
+ religion = jewish
215
+ }
216
+ clr_country_flag = ruler_is_messiah
217
+ }
218
+ if = {
219
+ limit = {
220
+ is_or_was_tag = {
221
+ tag = TEU
222
+ }
223
+ is_emperor = no
224
+ NOT = { tag = HLR }
225
+ has_country_modifier = teu_pru_imperial_crown
226
+ }
227
+ remove_country_modifier = teu_pru_imperial_crown
228
+ }
229
+ if = {
230
+ limit = { has_any_heir_cult_active = yes }
231
+ remove_heir_cult = yes
232
+ }
233
+ if = {
234
+ limit = {
235
+ has_government_attribute = kalmar_union_succession
236
+ has_regency = no
237
+ has_consort_regency = no
238
+ }
239
+ if = {
240
+ limit = { has_country_flag = dan_new_elected_ruler }
241
+ clr_country_flag = dan_new_elected_ruler
242
+ }
243
+ else = {
244
+ country_event = {
245
+ id = kalmar_union_events.1 # A new king of the Kalmar Union
246
+ }
247
+ }
248
+ }
249
+ if = {
250
+ limit = { has_government_attribute = absolutism_reduction_on_ruler_death }
251
+ add_absolutism = -60
252
+ }
253
+ if = {
254
+ limit = {
255
+ has_country_modifier = eng_the_age_of_reformation
256
+ is_religion_enabled = protestant
257
+ }
258
+ if = {
259
+ limit = {
260
+ religion = catholic
261
+ }
262
+ random = {
263
+ chance = 50
264
+ if = {
265
+ limit = { is_religion_enabled = anglican }
266
+ set_ruler_religion = anglican
267
+ }
268
+ else = {
269
+ set_ruler_religion = protestant
270
+ }
271
+ }
272
+ }
273
+ if = {
274
+ limit = {
275
+ OR = {
276
+ religion = protestant
277
+ religion = reformed
278
+ religion = anglican
279
+ religion = hussite
280
+ }
281
+ }
282
+ set_ruler_religion = catholic
283
+ }
284
+ }
285
+ if = {
286
+ limit = {
287
+ has_government_attribute = civil_war_on_every_new_ruler
288
+ NOT = { has_ruler_flag = civil_war_exempt } #Konstantinos
289
+ }
290
+ if = {
291
+ limit = {
292
+ NOT = { total_development = 100 }
293
+ }
294
+ capital_scope = {
295
+ spawn_rebels = {
296
+ type = pretender_rebels
297
+ size = 1
298
+ }
299
+ }
300
+ }
301
+ }
302
+ if = {
303
+ limit = {
304
+ has_government_mechanic = russian_rule_mechanic
305
+ }
306
+ add_government_power = { mechanic_type = russian_rule_mechanic power_type = russian_administrative_rule value = -50 }
307
+ add_government_power = { mechanic_type = russian_rule_mechanic power_type = russian_diplomatic_rule value = -50 }
308
+ add_government_power = { mechanic_type = russian_rule_mechanic power_type = russian_military_rule value = -50 }
309
+ }
310
+ if = {
311
+ limit = {
312
+ has_government_attribute = theocratic_monarchy_mechanic
313
+ }
314
+ #Setting it to 0
315
+ change_statists_vs_orangists = -10
316
+ change_statists_vs_orangists = 1
317
+ if = {
318
+ limit = { has_ruler_flag = monarchistic_heir }
319
+ change_statists_vs_orangists = 0.25
320
+ }
321
+ if = {
322
+ limit = { has_ruler_flag = theocratic_heir }
323
+ change_statists_vs_orangists = -0.25
324
+ }
325
+ if = {
326
+ limit = {
327
+ has_government_attribute = theocratic_monarchy_mechanic
328
+ }
329
+ country_event = {
330
+ id = flavor_sca.2
331
+ }
332
+ country_event = {
333
+ id = theocracy.1
334
+ days = 3
335
+ }
336
+ }
337
+ }
338
+ if = {
339
+ limit = {
340
+ OR = {
341
+ has_government_attribute = absolutism_reduction_on_ruler_death
342
+ has_government_attribute = has_limited_terms
343
+ }
344
+ }
345
+ set_variable = {
346
+ which = election_term
347
+ value = 1
348
+ }
349
+ }
350
+ }
351
+
179
352
  battle_cult_spreading_effect = {
180
353
  #Yemoya
181
354
  if = {
@@ -725,6 +898,7 @@ succession_culture_religion_effect = {
725
898
  if = {
726
899
  limit = {
727
900
  NOT = { has_reform = elective_monarchy }
901
+ NOT = { has_reform = polish_elective_monarchy }
728
902
  has_regency = no
729
903
  NOT = { has_country_flag = had_culture_religion_reaction_event_flag }
730
904
  NOT = { has_reform = mamluk_government }
@@ -764,8 +938,6 @@ ambrosian_republic_effect = {
764
938
  }
765
939
  }
766
940
 
767
-
768
-
769
941
  hab_remove_mission_mods_if_not_emperor_effect = {
770
942
  if = {
771
943
  limit = {
@@ -823,7 +995,6 @@ hab_remove_mission_mods_if_not_emperor_effect = {
823
995
  }
824
996
  }
825
997
 
826
-
827
998
  thu_remain_von_wettin_effect = {
828
999
  if = {
829
1000
  limit = {
@@ -832,7 +1003,7 @@ thu_remain_von_wettin_effect = {
832
1003
  NOT = { dynasty = "von Wettin" }
833
1004
  is_in_war = {
834
1005
  attacker_leader = root
835
- defender = SAX
1006
+ defenders = SAX
836
1007
  casus_belli = cb_independence_war
837
1008
  }
838
1009
  SAX = {
@@ -859,7 +1030,7 @@ ladislaus_postumus_heir_died_effect = {
859
1030
  }
860
1031
  clr_country_flag = hun_ladislaus_postumus_heir
861
1032
  HAB = {
862
- kill_heir = yes
1033
+ kill_heir = {}
863
1034
  clr_country_flag = hab_ladislaus_postumus_heir
864
1035
  }
865
1036
  }
@@ -889,7 +1060,7 @@ ladislaus_postumus_heir_died_effect = {
889
1060
  }
890
1061
  clr_country_flag = hab_ladislaus_postumus_heir
891
1062
  HUN = {
892
- kill_heir = yes
1063
+ kill_heir = {}
893
1064
  clr_country_flag = hun_ladislaus_postumus_heir
894
1065
  }
895
1066
  }
@@ -925,13 +1096,16 @@ ladislaus_postumus_king_died_effect = {
925
1096
  limit = {
926
1097
  tag = HUN
927
1098
  has_country_flag = hun_ladislaus_postumus_king
1099
+ NOT = {
1100
+ has_country_flag = hun_keep_ladislaus_alive
1101
+ }
928
1102
  HAB = {
929
1103
  has_heir = "Ladislaus Postumus"
930
1104
  has_country_flag = hab_ladislaus_postumus_heir
931
1105
  }
932
1106
  }
933
1107
  HAB = {
934
- kill_heir = yes
1108
+ kill_heir = {}
935
1109
  clr_country_flag = hab_ladislaus_postumus_heir
936
1110
  }
937
1111
  }
@@ -945,7 +1119,7 @@ ladislaus_postumus_king_died_effect = {
945
1119
  }
946
1120
  }
947
1121
  HUN = {
948
- kill_heir = yes
1122
+ kill_heir = {}
949
1123
  clr_country_flag = hun_ladislaus_postumus_heir
950
1124
  }
951
1125
  }
@@ -961,6 +1135,12 @@ ladislaus_postumus_king_died_effect = {
961
1135
  }
962
1136
  clr_country_flag = hab_ladislaus_postumus_king
963
1137
  }
1138
+ if = {
1139
+ limit = {
1140
+ has_country_flag = hun_keep_ladislaus_alive
1141
+ }
1142
+ clr_country_flag = hun_keep_ladislaus_alive
1143
+ }
964
1144
  }
965
1145
 
966
1146
  ladislaus_postumus_union_effect = {
@@ -998,6 +1178,7 @@ ladislaus_postumus_union_effect = {
998
1178
  has_country_flag = hun_ladislaus_postumus_heir
999
1179
  has_country_flag = hun_ladislaus_postumus_king
1000
1180
  }
1181
+ is_subject = no
1001
1182
  }
1002
1183
  }
1003
1184
  country_event = { id = flavor_hab.21 }
@@ -1012,6 +1193,7 @@ ladislaus_postumus_union_effect = {
1012
1193
  tag = HUN
1013
1194
  has_ruler = "Ladislaus Postumus I"
1014
1195
  has_regency = no
1196
+ is_subject = no
1015
1197
  HAB = {
1016
1198
  has_ruler = "Ladislaus Postumus"
1017
1199
  }
@@ -1036,6 +1218,11 @@ burgundian_inheritance_start_effect = {
1036
1218
  tag = BUR
1037
1219
  has_country_modifier = burgundian_succession_crisis
1038
1220
  NOT = { has_country_flag = burgundian_succession_has_already_fired }
1221
+ NOT = {
1222
+ BUR = {
1223
+ is_subject = yes
1224
+ }
1225
+ }
1039
1226
  }
1040
1227
  set_country_flag = burgundian_succession_has_already_fired
1041
1228
  remove_country_modifier = burgundian_succession_crisis
@@ -1078,7 +1265,6 @@ burgundian_inheritance_start_effect = {
1078
1265
  mil = 3
1079
1266
  claim = 50
1080
1267
  female = yes
1081
- fixed = yes
1082
1268
  }
1083
1269
  set_ruler_flag = mary_is_heir
1084
1270
  }
@@ -1103,3 +1289,3141 @@ burgundian_inheritance_start_effect = {
1103
1289
  }
1104
1290
  }
1105
1291
  }
1292
+
1293
+ joan_de_trastamara_king_died_effect = {
1294
+ if = {
1295
+ limit = {
1296
+ tag = NAV
1297
+ is_lesser_in_union = no
1298
+ ARA = {
1299
+ exists = yes
1300
+ has_heir_flag = joan_trastamara_flag
1301
+ is_lesser_in_union = no
1302
+ }
1303
+ }
1304
+ ARA = { kill_heir = {} }
1305
+ }
1306
+ }
1307
+
1308
+ joan_de_trastamara_heir_died_effect = {
1309
+ if = {
1310
+ limit = {
1311
+ tag = ARA
1312
+ is_lesser_in_union = no
1313
+ NAV = {
1314
+ exists = yes
1315
+ has_ruler_flag = joan_trastamara_flag
1316
+ is_lesser_in_union = no
1317
+ }
1318
+ }
1319
+ NAV = { kill_ruler = yes }
1320
+ }
1321
+ }
1322
+
1323
+ on_province_owner_change_government_effect = {
1324
+ if = {
1325
+ limit = {
1326
+ OR = {
1327
+ has_province_modifier = wine_bonus_prod
1328
+ has_province_modifier = grain_bonus_prod
1329
+ }
1330
+ FROM = { has_reform = monastic_breweries_reform }
1331
+ NOT = { owner = { has_reform = monastic_breweries_reform } }
1332
+ }
1333
+ remove_province_modifier = wine_bonus_prod
1334
+ remove_province_modifier = grain_bonus_prod
1335
+ }
1336
+ if = {
1337
+ limit = {
1338
+ NOT = {
1339
+ OR = {
1340
+ has_province_modifier = wine_bonus_prod
1341
+ has_province_modifier = grain_bonus_prod
1342
+ }
1343
+ }
1344
+ owner = { has_reform = monastic_breweries_reform }
1345
+ NOT = { FROM = { has_reform = monastic_breweries_reform } }
1346
+ }
1347
+ hidden_effect = {
1348
+ if = {
1349
+ limit = {
1350
+ trade_goods = wine
1351
+ }
1352
+ add_province_modifier = {
1353
+ name = wine_bonus_prod
1354
+ duration = -1
1355
+ hidden = yes
1356
+ }
1357
+ }
1358
+ if = {
1359
+ limit = {
1360
+ trade_goods = grain
1361
+ }
1362
+ add_province_modifier = {
1363
+ name = grain_bonus_prod
1364
+ duration = -1
1365
+ hidden = yes
1366
+ }
1367
+ }
1368
+ }
1369
+ }
1370
+ if = {
1371
+ limit = {
1372
+ has_province_modifier = grain_vodka_bonus_prod
1373
+ FROM = { has_government_attribute = extra_trade_goods_from_grain }
1374
+ NOT = { owner = { has_government_attribute = extra_trade_goods_from_grain } }
1375
+ }
1376
+ remove_province_modifier = grain_vodka_bonus_prod
1377
+ }
1378
+ if = {
1379
+ limit = {
1380
+ NOT = { has_province_modifier = grain_vodka_bonus_prod }
1381
+ owner = { has_government_attribute = extra_trade_goods_from_grain }
1382
+ NOT = { FROM = { has_government_attribute = extra_trade_goods_from_grain } }
1383
+ trade_goods = grain
1384
+ }
1385
+ hidden_effect = {
1386
+ add_province_modifier = {
1387
+ name = grain_vodka_bonus_prod
1388
+ duration = -1
1389
+ hidden = yes
1390
+ }
1391
+ }
1392
+ }
1393
+ if = {
1394
+ limit = {
1395
+ has_province_modifier = naval_supplies_bonus_prod
1396
+ FROM = { has_government_attribute = extra_trade_goods_from_naval_supplies }
1397
+ NOT = { owner = { has_government_attribute = extra_trade_goods_from_naval_supplies } }
1398
+ }
1399
+ remove_province_modifier = naval_supplies_bonus_prod
1400
+ }
1401
+ if = {
1402
+ limit = {
1403
+ NOT = { has_province_modifier = naval_supplies_bonus_prod }
1404
+ owner = { has_government_attribute = extra_trade_goods_from_naval_supplies }
1405
+ NOT = { FROM = { has_government_attribute = extra_trade_goods_from_naval_supplies } }
1406
+ }
1407
+ hidden_effect = {
1408
+ if = {
1409
+ limit = {
1410
+ trade_goods = naval_supplies
1411
+ }
1412
+ add_province_modifier = {
1413
+ name = naval_supplies_bonus_prod
1414
+ duration = -1
1415
+ hidden = yes
1416
+ }
1417
+ }
1418
+ }
1419
+ }
1420
+ if = {
1421
+ limit = {
1422
+ has_province_modifier = swe_support_of_the_peasantry_prov
1423
+ FROM = { has_country_modifier = swe_support_of_the_peasantry }
1424
+ NOT = { owner = { has_country_modifier = swe_support_of_the_peasantry } }
1425
+ }
1426
+ remove_province_modifier = swe_support_of_the_peasantry_prov
1427
+ }
1428
+ if = {
1429
+ limit = {
1430
+ NOT = { has_province_modifier = swe_support_of_the_peasantry_prov }
1431
+ owner = { has_country_modifier = swe_support_of_the_peasantry }
1432
+ NOT = { FROM = { has_country_modifier = swe_support_of_the_peasantry } }
1433
+ }
1434
+ hidden_effect = {
1435
+ if = {
1436
+ limit = {
1437
+ OR = {
1438
+ trade_goods = grain
1439
+ trade_goods = livestock
1440
+ trade_goods = fish
1441
+ }
1442
+ }
1443
+ add_province_modifier = {
1444
+ name = swe_support_of_the_peasantry_prov
1445
+ duration = -1
1446
+ hidden = yes
1447
+ }
1448
+ }
1449
+ }
1450
+ }
1451
+ if = {
1452
+ limit = {
1453
+ owner = { has_government_attribute = temples_modifier }
1454
+ has_tax_building_trigger = yes
1455
+ }
1456
+ add_province_modifier = {
1457
+ name = gov_expanded_temple_rights_mod
1458
+ duration = -1
1459
+ }
1460
+ }
1461
+ if = {
1462
+ limit = {
1463
+ owner = { has_government_attribute = more_25_tax_in_true_faith_provinces }
1464
+ has_owner_religion = yes
1465
+ }
1466
+ add_province_modifier = {
1467
+ name = ottoman_siyasah_tax_reform_tax
1468
+ duration = -1
1469
+ }
1470
+ }
1471
+ if = {
1472
+ limit = {
1473
+ owner = { has_government_attribute = more_15_manpower_in_heathen_provinces }
1474
+ NOT = { religion_group = owner }
1475
+ }
1476
+ add_province_modifier = {
1477
+ name = ottoman_siyasah_tax_reform_manpower
1478
+ duration = -1
1479
+ }
1480
+ }
1481
+ if = {
1482
+ limit = {
1483
+ owner = { has_government_attribute = improved_military_buildings }
1484
+ }
1485
+ if = {
1486
+ limit = { has_building = barracks }
1487
+ add_province_modifier = {
1488
+ name = wei_suo_system_reform_barracks_modifier
1489
+ duration = -1
1490
+ hidden = yes
1491
+ }
1492
+ }
1493
+ if = {
1494
+ limit = { has_building = training_fields }
1495
+ add_province_modifier = {
1496
+ name = wei_suo_system_reform_training_fields_modifier
1497
+ duration = -1
1498
+ hidden = yes
1499
+ }
1500
+ }
1501
+ if = {
1502
+ limit = { has_building = regimental_camp }
1503
+ add_province_modifier = {
1504
+ name = wei_suo_system_reform_regimental_camp_modifier
1505
+ duration = -1
1506
+ hidden = yes
1507
+ }
1508
+ }
1509
+ if = {
1510
+ limit = { has_building = conscription_center }
1511
+ add_province_modifier = {
1512
+ name = wei_suo_system_reform_conscription_center_modifier
1513
+ duration = -1
1514
+ hidden = yes
1515
+ }
1516
+ }
1517
+ if = {
1518
+ limit = { has_building = soldier_households }
1519
+ add_province_modifier = {
1520
+ name = wei_suo_system_reform_soldier_households_modifier
1521
+ duration = -1
1522
+ hidden = yes
1523
+ }
1524
+ }
1525
+ }
1526
+ if = {
1527
+ limit = {
1528
+ has_port = yes
1529
+ owner = {
1530
+ has_government_attribute = cheaper_coastal_province_core
1531
+ }
1532
+ }
1533
+ add_province_modifier = {
1534
+ name = gov_coastal_government
1535
+ duration = -1
1536
+ }
1537
+ }
1538
+ }
1539
+
1540
+ on_province_religion_changed_effect = {
1541
+ on_province_religion_converted_estate_privileges_effect = yes
1542
+ if = {
1543
+ limit = {
1544
+ owner = {
1545
+ has_country_modifier = son_fetishism_as_secondary_religion
1546
+ }
1547
+ religion = shamanism
1548
+ NOT = { has_province_modifier = son_fetishism_as_secondary_religion_province }
1549
+ }
1550
+ add_province_modifier = {
1551
+ name = son_fetishism_as_secondary_religion_province
1552
+ duration = -1
1553
+ desc = son_fetishism_as_secondary_religion_province_desc
1554
+ }
1555
+ }
1556
+ else_if = {
1557
+ limit = {
1558
+ OR = {
1559
+ owner = {
1560
+ NOT = { has_country_modifier = son_fetishism_as_secondary_religion }
1561
+ }
1562
+ NOT = { religion = shamanism }
1563
+ }
1564
+ has_province_modifier = son_fetishism_as_secondary_religion_province
1565
+ }
1566
+ remove_province_modifier = son_fetishism_as_secondary_religion_province
1567
+ }
1568
+ if = {
1569
+ limit = {
1570
+ OR = {
1571
+ religion_group = christian
1572
+ religion_group = muslim
1573
+ }
1574
+ owner = {
1575
+ has_church_aspect = jewish_abrahamic_aspect
1576
+ }
1577
+ }
1578
+ add_province_modifier = {
1579
+ name = judaism_abrahamic_roots
1580
+ duration = -1
1581
+ }
1582
+ }
1583
+ else_if = {
1584
+ limit = {
1585
+ has_province_modifier = judaism_abrahamic_roots
1586
+ OR = {
1587
+ AND = {
1588
+ NOT = { religion_group = christian }
1589
+ NOT = { religion_group = muslim }
1590
+ }
1591
+ owner = {
1592
+ NOT = { has_church_aspect = jewish_abrahamic_aspect }
1593
+ }
1594
+ }
1595
+ }
1596
+ remove_province_modifier = judaism_abrahamic_roots
1597
+ }
1598
+ if = {
1599
+ limit = {
1600
+ religion = jewish
1601
+ owner = {
1602
+ has_church_aspect = judaism_communities_aspect
1603
+ }
1604
+ }
1605
+ if = {
1606
+ limit = {
1607
+ has_owner_accepted_culture = no
1608
+ has_owner_culture = no
1609
+ owner = { NOT = { culture_group = ROOT } }
1610
+ }
1611
+ add_province_modifier = {
1612
+ name = judaism_community_wrong_culture
1613
+ duration = -1
1614
+ }
1615
+ }
1616
+ else_if = {
1617
+ limit = {
1618
+ owner = {
1619
+ culture_group = ROOT
1620
+ has_cultural_union = no
1621
+ }
1622
+ has_owner_accepted_culture = no
1623
+ }
1624
+ add_province_modifier = {
1625
+ name = judaism_community_same_culture_group
1626
+ duration = -1
1627
+ }
1628
+ }
1629
+ }
1630
+ else_if = {
1631
+ limit = {
1632
+ OR = {
1633
+ NOT = { religion = jewish }
1634
+ owner = { NOT = { has_church_aspect = judaism_communities_aspect } }
1635
+ has_owner_accepted_culture = yes
1636
+ has_owner_culture = yes
1637
+ }
1638
+ OR = {
1639
+ has_province_modifier = judaism_community_wrong_culture
1640
+ has_province_modifier = judaism_community_same_culture_group
1641
+ }
1642
+ }
1643
+ if = {
1644
+ limit = { has_province_modifier = judaism_community_wrong_culture }
1645
+ remove_province_modifier = judaism_community_wrong_culture
1646
+ }
1647
+ if = {
1648
+ limit = { has_province_modifier = judaism_community_same_culture_group }
1649
+ remove_province_modifier = judaism_community_same_culture_group
1650
+ }
1651
+ }
1652
+ }
1653
+
1654
+ on_province_religion_converted_effect = {
1655
+ if = {
1656
+ limit = { owner = { has_government_attribute = gain_devotion_from_conversions } }
1657
+ owner = { add_devotion = 0.2 }
1658
+ }
1659
+ if = {
1660
+ limit = { owner = { has_government_attribute = theocratic_monarchy_mechanic } }
1661
+ owner = { change_statists_vs_orangists = -0.01 }
1662
+ }
1663
+ if = {
1664
+ limit = {
1665
+ owner = {
1666
+ has_government_mechanic = the_three_royal_fires_mechanic
1667
+ NOT = { has_country_flag = removed_asha_vahishta_loss_from_missionaries }
1668
+ }
1669
+ has_owner_religion = yes
1670
+ }
1671
+ export_to_variable = {
1672
+ which = province_dev
1673
+ value = development
1674
+ }
1675
+ while = {
1676
+ limit = {
1677
+ check_variable = {
1678
+ which = province_dev
1679
+ value = 1
1680
+ }
1681
+ }
1682
+ subtract_variable = {
1683
+ which = province_dev
1684
+ value = 1
1685
+ }
1686
+ owner = {
1687
+ change_asha_vahishta = { value = -1 }
1688
+ }
1689
+ }
1690
+ }
1691
+ }
1692
+
1693
+ on_trade_good_changed_government_effect = {
1694
+ if = {
1695
+ limit = {
1696
+ owner = { has_reform = monastic_breweries_reform }
1697
+ }
1698
+ if = {
1699
+ limit = {
1700
+ trade_goods = grain
1701
+ }
1702
+ remove_province_modifier = wine_bonus_prod
1703
+ add_province_modifier = {
1704
+ name = grain_bonus_prod
1705
+ duration = -1
1706
+ hidden = yes
1707
+ }
1708
+ }
1709
+ else_if = {
1710
+ limit = {
1711
+ trade_goods = wine
1712
+ }
1713
+ remove_province_modifier = wine_bonus_prod
1714
+ add_province_modifier = {
1715
+ name = grain_bonus_prod
1716
+ duration = -1
1717
+ hidden = yes
1718
+ }
1719
+ }
1720
+ else = {
1721
+ remove_province_modifier = wine_bonus_prod
1722
+ remove_province_modifier = grain_bonus_prod
1723
+ }
1724
+ }
1725
+ else = {
1726
+ remove_province_modifier = wine_bonus_prod
1727
+ remove_province_modifier = grain_bonus_prod
1728
+ }
1729
+ if = {
1730
+ limit = { owner = { has_government_attribute = extra_trade_goods_from_grain } }
1731
+ if = {
1732
+ limit = { trade_goods = grain }
1733
+ add_province_modifier = {
1734
+ name = grain_vodka_bonus_prod
1735
+ duration = -1
1736
+ hidden = yes
1737
+ }
1738
+ }
1739
+ else = { remove_province_modifier = grain_vodka_bonus_prod }
1740
+ }
1741
+ else = { remove_province_modifier = grain_vodka_bonus_prod }
1742
+ if = {
1743
+ limit = {
1744
+ owner = { has_government_attribute = extra_trade_goods_from_naval_supplies }
1745
+ }
1746
+ if = {
1747
+ limit = {
1748
+ trade_goods = naval_supplies
1749
+ }
1750
+ add_province_modifier = {
1751
+ name = naval_supplies_bonus_prod
1752
+ duration = -1
1753
+ hidden = yes
1754
+ }
1755
+ }
1756
+ else = {
1757
+ remove_province_modifier = naval_supplies_bonus_prod
1758
+ }
1759
+ }
1760
+ else = {
1761
+ remove_province_modifier = naval_supplies_bonus_prod
1762
+ }
1763
+ if = {
1764
+ limit = {
1765
+ owner = { has_country_modifier = swe_support_of_the_peasantry }
1766
+ }
1767
+ if = {
1768
+ limit = {
1769
+ OR = {
1770
+ trade_goods = grain
1771
+ trade_goods = fish
1772
+ trade_goods = livestock
1773
+ }
1774
+ }
1775
+ add_province_modifier = {
1776
+ name = swe_support_of_the_peasantry_prov
1777
+ duration = -1
1778
+ hidden = yes
1779
+ }
1780
+ }
1781
+ else = {
1782
+ remove_province_modifier = swe_support_of_the_peasantry_prov
1783
+ }
1784
+ }
1785
+ else = {
1786
+ remove_province_modifier = swe_support_of_the_peasantry_prov
1787
+ }
1788
+ }
1789
+
1790
+ on_battle_won_unit_effect = {
1791
+ if = {
1792
+ limit = {
1793
+ unit_owner = {
1794
+ has_government_mechanic = ottoman_decadence_mechanic
1795
+ check_variable = { #Check so overrun will not decrease Decadence
1796
+ which = land_units_lost
1797
+ value = 1
1798
+ }
1799
+ }
1800
+ is_ruler_commanding_unit = yes
1801
+ }
1802
+ unit_owner = {
1803
+ set_variable = {
1804
+ which = monarch_kill
1805
+ which = land_units_killed
1806
+ }
1807
+ set_variable = {
1808
+ which = monarch_losses
1809
+ which = land_units_lost
1810
+ }
1811
+ divide_variable = {
1812
+ which = monarch_kill
1813
+ value = 1000
1814
+ }
1815
+ divide_variable = {
1816
+ which = monarch_losses
1817
+ value = 1000
1818
+ }
1819
+ change_variable = { #in order to avoid division by 0
1820
+ which = monarch_losses
1821
+ value = 1
1822
+ }
1823
+ divide_variable = {
1824
+ which = monarch_kill
1825
+ which = monarch_losses
1826
+ }
1827
+ while = {
1828
+ limit = {
1829
+ check_variable = {
1830
+ which = monarch_kill
1831
+ value = 1
1832
+ }
1833
+ }
1834
+ change_variable = {
1835
+ which = monarch_kill
1836
+ value = -1
1837
+ }
1838
+ add_government_power = {
1839
+ mechanic_type = ottoman_decadence_mechanic
1840
+ power_type = ottoman_decadence
1841
+ value = -0.1
1842
+ }
1843
+ }
1844
+ multiply_variable = {
1845
+ which = monarch_kill
1846
+ value = 10
1847
+ }
1848
+ while = {
1849
+ limit = {
1850
+ check_variable = {
1851
+ which = monarch_kill
1852
+ value = 1
1853
+ }
1854
+ }
1855
+ change_variable = {
1856
+ which = monarch_kill
1857
+ value = -1
1858
+ }
1859
+ add_government_power = {
1860
+ mechanic_type = ottoman_decadence_mechanic
1861
+ power_type = ottoman_decadence
1862
+ value = -0.01
1863
+ }
1864
+ }
1865
+ }
1866
+ }
1867
+ }
1868
+
1869
+ on_battle_lost_unit_effect = {
1870
+ if = {
1871
+ limit = {
1872
+ unit_owner = {
1873
+ has_government_mechanic = ottoman_decadence_mechanic
1874
+ check_variable = { #Check so overrun will not decrease Decadence
1875
+ which = land_units_killed
1876
+ value = 1
1877
+ }
1878
+ }
1879
+ is_ruler_commanding_unit = yes
1880
+ }
1881
+ unit_owner = {
1882
+ set_variable = {
1883
+ which = monarch_kill
1884
+ which = land_units_killed
1885
+ }
1886
+ set_variable = {
1887
+ which = monarch_losses
1888
+ which = land_units_lost
1889
+ }
1890
+ divide_variable = {
1891
+ which = monarch_kill
1892
+ value = 1000
1893
+ }
1894
+ divide_variable = {
1895
+ which = monarch_losses
1896
+ value = 1000
1897
+ }
1898
+ change_variable = { #in order to avoid division by 0
1899
+ which = monarch_kill
1900
+ value = 1
1901
+ }
1902
+ divide_variable = {
1903
+ which = monarch_losses
1904
+ which = monarch_kill
1905
+ }
1906
+ while = {
1907
+ limit = {
1908
+ check_variable = {
1909
+ which = monarch_losses
1910
+ value = 1
1911
+ }
1912
+ }
1913
+ change_variable = {
1914
+ which = monarch_losses
1915
+ value = -1
1916
+ }
1917
+ add_government_power = {
1918
+ mechanic_type = ottoman_decadence_mechanic
1919
+ power_type = ottoman_decadence
1920
+ value = 0.1
1921
+ }
1922
+ }
1923
+ multiply_variable = {
1924
+ which = monarch_losses
1925
+ value = 10
1926
+ }
1927
+ while = {
1928
+ limit = {
1929
+ check_variable = {
1930
+ which = monarch_losses
1931
+ value = 1
1932
+ }
1933
+ }
1934
+ change_variable = {
1935
+ which = monarch_losses
1936
+ value = -1
1937
+ }
1938
+ add_government_power = {
1939
+ mechanic_type = ottoman_decadence_mechanic
1940
+ power_type = ottoman_decadence
1941
+ value = 0.01
1942
+ }
1943
+ }
1944
+ }
1945
+ }
1946
+ }
1947
+
1948
+ on_battle_won_country_effect = {
1949
+ if = {
1950
+ limit = {
1951
+ ROOT = {
1952
+ religion = jewish
1953
+ has_church_aspect = judaism_purim_teachings_aspect
1954
+ }
1955
+ }
1956
+ ROOT = {
1957
+ add_war_exhaustion = -0.05
1958
+ }
1959
+ }
1960
+ if = {
1961
+ limit = {
1962
+ ROOT = { has_government_attribute = manpower_from_defeating_armies }
1963
+ }
1964
+ ROOT = {
1965
+ set_variable = {
1966
+ which = land_units_killed_var
1967
+ which = land_units_killed
1968
+ }
1969
+ multiply_variable = {
1970
+ which = land_units_killed_var
1971
+ value = 0.1
1972
+ }
1973
+ while = {
1974
+ limit = {
1975
+ check_variable = {
1976
+ which = land_units_killed_var
1977
+ value = 1000
1978
+ }
1979
+ }
1980
+ subtract_variable = {
1981
+ which = land_units_killed_var
1982
+ value = 1000
1983
+ }
1984
+ add_manpower = 1
1985
+ }
1986
+ multiply_variable = {
1987
+ which = land_units_killed_var
1988
+ value = 1000
1989
+ }
1990
+ while = {
1991
+ limit = {
1992
+ check_variable = {
1993
+ which = land_units_killed_var
1994
+ value = 1000
1995
+ }
1996
+ }
1997
+ subtract_variable = {
1998
+ which = land_units_killed_var
1999
+ value = 1000
2000
+ }
2001
+ add_manpower = 0.001
2002
+ }
2003
+ }
2004
+ }
2005
+ }
2006
+
2007
+ on_battle_ended_effect = {
2008
+ ROOT = {
2009
+ change_variable = {
2010
+ which = total_land_units_killed
2011
+ which = land_units_killed
2012
+ }
2013
+ change_variable = {
2014
+ which = total_land_units_lost
2015
+ which = land_units_lost
2016
+ }
2017
+ change_variable = {
2018
+ which = total_naval_units_killed
2019
+ which = naval_units_killed
2020
+ }
2021
+ change_variable = {
2022
+ which = total_naval_units_lost
2023
+ which = naval_units_lost
2024
+ }
2025
+ }
2026
+ }
2027
+
2028
+ #Province effect
2029
+ judaism_on_province_culture_converted_effect = {
2030
+ if = {
2031
+ limit = { has_province_modifier = judaism_community_wrong_culture }
2032
+ remove_province_modifier = judaism_community_wrong_culture
2033
+ }
2034
+ if = {
2035
+ limit = { has_province_modifier = judaism_community_same_culture_group }
2036
+ remove_province_modifier = judaism_community_same_culture_group
2037
+ }
2038
+ if = {
2039
+ limit = {
2040
+ religion = jewish
2041
+ owner = {
2042
+ has_church_aspect = judaism_communities_aspect
2043
+ }
2044
+ }
2045
+ if = {
2046
+ limit = {
2047
+ has_owner_accepted_culture = no
2048
+ has_owner_culture = no
2049
+ owner = { NOT = { culture_group = ROOT } }
2050
+ }
2051
+ add_province_modifier = {
2052
+ name = judaism_community_wrong_culture
2053
+ duration = -1
2054
+ }
2055
+ }
2056
+ if = {
2057
+ limit = {
2058
+ owner = {
2059
+ culture_group = ROOT
2060
+ has_cultural_union = yes
2061
+ }
2062
+ has_owner_accepted_culture = no
2063
+ }
2064
+ add_province_modifier = {
2065
+ name = judaism_community_same_culture_group
2066
+ duration = -1
2067
+ }
2068
+ }
2069
+ }
2070
+ }
2071
+
2072
+ on_religion_change_effect = {
2073
+ ###removes catholic modifiers
2074
+ remove_country_modifier = counter_reformation
2075
+ remove_country_modifier = the_statue_in_restraint_of_appeals
2076
+ remove_country_modifier = revocation_of_restraint_of_appeals
2077
+ remove_country_modifier = bavarian_jesuits
2078
+ remove_country_modifier = the_societas_jesu
2079
+ remove_country_modifier = the_declaration_of_indulgence
2080
+ remove_country_modifier = de_heretico_comburendo
2081
+ remove_country_modifier = the_conventicle_act
2082
+ if = {
2083
+ limit = {
2084
+ has_reform = indian_sultanate_reform
2085
+ NOT = { religion_group = muslim }
2086
+ }
2087
+ remove_government_reform = indian_sultanate_reform
2088
+ }
2089
+
2090
+ if = {
2091
+ limit = {
2092
+ has_reform = feudal_theocracy
2093
+ NOT = { religion_group = muslim }
2094
+ NOT = { religion_group = zoroastrian_group }
2095
+ }
2096
+ remove_government_reform = feudal_theocracy
2097
+ }
2098
+
2099
+ if = {
2100
+ limit = {
2101
+ government = native
2102
+ OR = {
2103
+ religion = nahuatl
2104
+ religion = mesoamerican_religion
2105
+ religion = inti
2106
+ }
2107
+ }
2108
+ change_government = monarchy
2109
+ add_government_reform = autocracy_reform
2110
+ }
2111
+
2112
+
2113
+ if = {
2114
+ limit = {
2115
+ has_heir = yes
2116
+ }
2117
+ set_heir_religion = ROOT
2118
+ }
2119
+ if = {
2120
+ limit = {
2121
+ has_regency = no
2122
+ }
2123
+ set_ruler_religion = ROOT
2124
+ }
2125
+ if = {
2126
+ limit = {
2127
+ has_dlc = "Rights of Man"
2128
+ has_consort = yes
2129
+ }
2130
+ set_consort_religion = ROOT
2131
+ }
2132
+ if = {
2133
+ limit = {
2134
+ NOT = { religion = orthodox }
2135
+ }
2136
+ every_known_country = {
2137
+ limit = {
2138
+ reverse_has_opinion_modifier = {
2139
+ who = ROOT
2140
+ modifier = closed_down_the_patriarchate
2141
+ }
2142
+ }
2143
+ reverse_remove_opinion = {
2144
+ who = ROOT
2145
+ modifier = closed_down_the_patriarchate
2146
+ }
2147
+ }
2148
+ }
2149
+ if = {
2150
+ limit = {
2151
+ religion = catholic
2152
+ has_ruler_flag = personal_catholic_sympathies
2153
+ }
2154
+ country_event = { id = protestantism_events.19 }
2155
+ }
2156
+ if = {
2157
+ limit = {
2158
+ religion = protestant
2159
+ }
2160
+ set_country_flag = converted_to_protestantism
2161
+ }
2162
+ if = {
2163
+ limit = {
2164
+ religion = hussite
2165
+ }
2166
+ remove_country_modifier = hussite_persecution
2167
+ }
2168
+ if = {
2169
+ limit = { has_country_modifier = bav_religious_mandate_mod }
2170
+ remove_country_modifier = bav_religious_mandate_mod
2171
+ }
2172
+ add_country_modifier = {
2173
+ name = recently_changed_religion_dummy
2174
+ duration = 10
2175
+ hidden = yes
2176
+ }
2177
+ if = {
2178
+ limit = {
2179
+ NOT = { religion_group = muslim }
2180
+ any_owned_province = { has_province_modifier = sufi_shrine }
2181
+ }
2182
+ every_owned_province = {
2183
+ limit = { has_province_modifier = sufi_shrine }
2184
+ remove_province_modifier = sufi_shrine
2185
+ }
2186
+ }
2187
+ if = {
2188
+ limit = {
2189
+ religion = shamanism
2190
+ has_country_modifier = son_fetishism_as_secondary_religion
2191
+ }
2192
+ remove_country_modifier = son_fetishism_as_secondary_religion
2193
+ every_owned_province = {
2194
+ limit = {
2195
+ has_province_modifier = son_fetishism_as_secondary_religion_province
2196
+ }
2197
+ remove_province_modifier = son_fetishism_as_secondary_religion_province
2198
+ }
2199
+ }
2200
+ if = {
2201
+ limit = {
2202
+ has_country_flag = fra_papal_lap_dop_flag
2203
+ }
2204
+ clr_country_flag = fra_papal_lap_dop_flag
2205
+ set_country_flag = fra_chose_to_piss_off_pope_flag
2206
+ swap_non_generic_missions = yes
2207
+ remove_country_modifier = fra_catholic_head_of_state_modifier
2208
+ remove_country_modifier = fra_fervent_call_to_arms_modifier
2209
+ clr_country_flag = enable_holy_orders_flag
2210
+ if = {
2211
+ limit = {
2212
+ KOJ = { is_subject_of = ROOT }
2213
+ }
2214
+ KOJ = { add_liberty_desire = 25 }
2215
+ }
2216
+ remove_country_modifier = fra_sword_of_christianity_modifier
2217
+ remove_country_modifier = fra_sword_of_christianity_modifier2
2218
+ remove_country_modifier = fra_sword_of_christianity_modifier3
2219
+ remove_country_modifier = fra_sword_of_christianity_modifier4
2220
+ remove_country_modifier = fra_sword_of_christianity_modifier5
2221
+ remove_country_modifier = fra_jerusalem_modifier
2222
+ }
2223
+ if = {
2224
+ limit = {
2225
+ has_government_mechanic = persian_influence_mechanic
2226
+ num_of_subjects = 1
2227
+ any_subject_country = {
2228
+ is_subject_of_type = cultural_sphere_of_influence_subject
2229
+ NOT = { religion = root }
2230
+ }
2231
+ }
2232
+ country_event = {
2233
+ id = persian_influence_events.2000
2234
+ }
2235
+ }
2236
+ if = {
2237
+ limit = {
2238
+ is_subject = yes
2239
+ is_subject_of_type = cultural_sphere_of_influence_subject
2240
+ overlord = { NOT = { religion = root } }
2241
+ }
2242
+ country_event = {
2243
+ id = persian_influence_events.1000
2244
+ }
2245
+ }
2246
+ }
2247
+
2248
+ #Country effect
2249
+ judaism_on_religion_change_effect = {
2250
+ every_owned_province = {
2251
+ limit = {
2252
+ OR = {
2253
+ has_province_modifier = judaism_abrahamic_roots
2254
+ has_province_modifier = judaism_community_same_culture_group
2255
+ has_province_modifier = judaism_community_wrong_culture
2256
+ }
2257
+ }
2258
+ remove_province_modifier = judaism_abrahamic_roots
2259
+ remove_province_modifier = judaism_community_same_culture_group
2260
+ remove_province_modifier = judaism_community_wrong_culture
2261
+ }
2262
+ }
2263
+
2264
+ on_culture_demoted_effect_free_slot_removal = {
2265
+ if = {
2266
+ limit = {
2267
+ has_country_modifier = free_slot_for_$culture$
2268
+ NOT = { accepted_culture = $culture$ }
2269
+ NOT = { primary_culture = $culture$ }
2270
+ }
2271
+ remove_country_modifier = free_slot_for_$culture$
2272
+ }
2273
+ }
2274
+
2275
+ on_culture_demoted_effect_remove_all_free_slots = {
2276
+ on_culture_demoted_effect_free_slot_removal = { culture = armenian }
2277
+ on_culture_demoted_effect_free_slot_removal = { culture = georgian }
2278
+ on_culture_demoted_effect_free_slot_removal = { culture = turkish }
2279
+ on_culture_demoted_effect_free_slot_removal = { culture = al_iraqiya_arabic }
2280
+ on_culture_demoted_effect_free_slot_removal = { culture = al_suryah_arabic }
2281
+ }
2282
+
2283
+ #Country effect
2284
+ on_culture_demoted_effect = {
2285
+ if = {
2286
+ limit = {
2287
+ has_country_modifier = plc_polish_lithuanian_union
2288
+ OR = {
2289
+ AND = {
2290
+ primary_culture = polish
2291
+ NOT = { accepted_culture = lithuanian }
2292
+ }
2293
+ AND = {
2294
+ primary_culture = lithuanian
2295
+ NOT = { accepted_culture = polish }
2296
+ }
2297
+ AND = {
2298
+ OR = {
2299
+ NOT = { accepted_culture = lithuanian }
2300
+ NOT = { accepted_culture = polish }
2301
+ }
2302
+ NOT = { primary_culture = polish }
2303
+ NOT = { primary_culture = lithuanian }
2304
+ }
2305
+ }
2306
+ }
2307
+ remove_country_modifier = plc_polish_lithuanian_union
2308
+ }
2309
+ if = {
2310
+ limit = {
2311
+ has_country_modifier = teu_pru_integration_of_the_poles
2312
+ NOT = { accepted_culture = polish }
2313
+ NOT = { primary_culture = polish }
2314
+ }
2315
+ remove_country_modifier = teu_pru_integration_of_the_poles
2316
+ }
2317
+ if = {
2318
+ limit = {
2319
+ has_country_modifier = teu_pru_integration_of_the_ruthenians
2320
+ NOT = { accepted_culture = polish }
2321
+ NOT = { primary_culture = polish }
2322
+ }
2323
+ remove_country_modifier = teu_pru_integration_of_the_ruthenians
2324
+ }
2325
+ if = {
2326
+ limit = {
2327
+ has_country_modifier = dan_estonian_culture_accepted
2328
+ NOT = { accepted_culture = estonian }
2329
+ NOT = { primary_culture = estonian }
2330
+ }
2331
+ remove_country_modifier = dan_estonian_culture_accepted
2332
+ every_owned_province = {
2333
+ limit = {
2334
+ has_province_modifier = dan_estonian_support
2335
+ }
2336
+ remove_province_modifier = dan_estonian_support
2337
+ }
2338
+ }
2339
+ if = {
2340
+ limit = {
2341
+ has_country_modifier = tur_legitimate_roman_empire_modifier
2342
+ OR = {
2343
+ NOT = { accepted_culture = lombard }
2344
+ NOT = { accepted_culture = tuscan }
2345
+ NOT = { accepted_culture = sardinian }
2346
+ NOT = { accepted_culture = romagnan }
2347
+ NOT = { accepted_culture = ligurian }
2348
+ NOT = { accepted_culture = venetian }
2349
+ NOT = { accepted_culture = dalmatian }
2350
+ NOT = { accepted_culture = neapolitan }
2351
+ NOT = { accepted_culture = piedmontese }
2352
+ NOT = { accepted_culture = umbrian }
2353
+ NOT = { accepted_culture = sicilian }
2354
+ NOT = { accepted_culture = maltese }
2355
+ }
2356
+ }
2357
+ remove_country_modifier = tur_legitimate_roman_empire_modifier
2358
+ remove_accepted_culture = lombard
2359
+ remove_accepted_culture = tuscan
2360
+ remove_accepted_culture = sardinian
2361
+ remove_accepted_culture = romagnan
2362
+ remove_accepted_culture = ligurian
2363
+ remove_accepted_culture = venetian
2364
+ remove_accepted_culture = dalmatian
2365
+ remove_accepted_culture = neapolitan
2366
+ remove_accepted_culture = piedmontese
2367
+ remove_accepted_culture = umbrian
2368
+ remove_accepted_culture = sicilian
2369
+ remove_accepted_culture = maltese
2370
+ }
2371
+ if = {
2372
+ limit = {
2373
+ has_country_modifier = tur_turkish_andalusian_relations_gra
2374
+ NOT = { accepted_culture = turkish }
2375
+ }
2376
+ remove_country_modifier = tur_turkish_andalusian_relations_gra
2377
+ }
2378
+ if = {
2379
+ limit = {
2380
+ has_country_modifier = tur_turkish_andalusian_relations_tur
2381
+ NOT = { accepted_culture = andalucian }
2382
+ }
2383
+ remove_country_modifier = tur_turkish_andalusian_relations_tur
2384
+ }
2385
+ if = {
2386
+ limit = {
2387
+ has_country_modifier = rus_west_slavic_union
2388
+ OR = {
2389
+ NOT = { accepted_culture = czech }
2390
+ NOT = { accepted_culture = sorbian }
2391
+ NOT = { accepted_culture = schlesian }
2392
+ NOT = { accepted_culture = polish }
2393
+ NOT = { accepted_culture = slovak }
2394
+ }
2395
+ }
2396
+ remove_country_modifier = rus_west_slavic_union
2397
+ }
2398
+ if = {
2399
+ limit = {
2400
+ has_country_modifier = rus_carpathian_union
2401
+ OR = {
2402
+ NOT = { accepted_culture = hungarian }
2403
+ NOT = { accepted_culture = romanian }
2404
+ NOT = { accepted_culture = transylvanian }
2405
+ }
2406
+ }
2407
+ remove_country_modifier = rus_carpathian_union
2408
+ }
2409
+ if = {
2410
+ limit = {
2411
+ has_country_modifier = rus_south_slavic_union
2412
+ OR = {
2413
+ NOT = { accepted_culture = bulgarian }
2414
+ NOT = { accepted_culture = serbian }
2415
+ NOT = { accepted_culture = bosnian }
2416
+ NOT = { accepted_culture = slovene }
2417
+ NOT = { accepted_culture = albanian }
2418
+ NOT = { accepted_culture = croatian }
2419
+ }
2420
+ }
2421
+ remove_country_modifier = rus_south_slavic_union
2422
+ }
2423
+ if = {
2424
+ limit = {
2425
+ has_country_modifier = gbr_unified_british_isles_culture
2426
+ OR = {
2427
+ NOT = { accepted_culture = irish }
2428
+ NOT = { accepted_culture = highland_scottish }
2429
+ }
2430
+ }
2431
+ remove_country_modifier = gbr_unified_british_isles_culture
2432
+ }
2433
+ if = {
2434
+ limit = {
2435
+ has_country_modifier = gbr_accepted_lowlands
2436
+ OR = {
2437
+ NOT = { accepted_culture = dutch }
2438
+ NOT = { accepted_culture = flemish }
2439
+ }
2440
+ }
2441
+ remove_country_modifier = gbr_accepted_lowlands
2442
+ }
2443
+ if = {
2444
+ limit = {
2445
+ has_country_modifier = BYZ_no_slot_bulgarian
2446
+ NOT = { accepted_culture = bulgarian }
2447
+ NOT = { primary_culture = bulgarian }
2448
+ }
2449
+ remove_country_modifier = BYZ_no_slot_bulgarian
2450
+ }
2451
+ if = {
2452
+ limit = {
2453
+ has_country_modifier = geo_armenian_union
2454
+ NOT = { accepted_culture = armenian }
2455
+ }
2456
+ remove_country_modifier = geo_armenian_union
2457
+ }
2458
+ if = {
2459
+ limit = {
2460
+ has_country_modifier = turkmen_turkic_union
2461
+ NOT = { accepted_culture = turkish }
2462
+ }
2463
+ remove_country_modifier = turkmen_turkic_union
2464
+ }
2465
+ }
2466
+
2467
+ #Country effect
2468
+ judaism_on_culture_country_effect = {
2469
+ if = {
2470
+ limit = {
2471
+ has_church_aspect = judaism_communities_aspect
2472
+ }
2473
+ every_owned_province = {
2474
+ remove_province_modifier = judaism_community_wrong_culture
2475
+ remove_province_modifier = judaism_community_same_culture_group
2476
+ }
2477
+ every_owned_province = {
2478
+ limit = {
2479
+ religion = jewish
2480
+ }
2481
+ if = {
2482
+ limit = {
2483
+ NOT = { culture_group = ROOT }
2484
+ has_owner_accepted_culture = no
2485
+ has_owner_culture = no
2486
+ }
2487
+ add_province_modifier = {
2488
+ name = judaism_community_wrong_culture
2489
+ duration = -1
2490
+ }
2491
+ }
2492
+ else_if = {
2493
+ limit = {
2494
+ owner = {
2495
+ has_cultural_union = no
2496
+ }
2497
+ culture_group = ROOT
2498
+ has_owner_accepted_culture = no
2499
+ }
2500
+ add_province_modifier = {
2501
+ name = judaism_community_same_culture_group
2502
+ duration = -1
2503
+ }
2504
+ }
2505
+ }
2506
+ }
2507
+ }
2508
+
2509
+ #Province effect
2510
+ imperial_modifiers_on_province_change_culture_or_change_owner_effect = {
2511
+ if = {
2512
+ limit = {
2513
+ NOT = { has_province_modifier = kon_south_african_hegemony_province }
2514
+ owner = {
2515
+ has_country_modifier = kon_south_african_hegemony
2516
+ }
2517
+ has_owner_accepted_culture = no
2518
+ OR = {
2519
+ culture_group = southern_african
2520
+ culture_group = african
2521
+ culture_group = great_lakes_group
2522
+ }
2523
+ }
2524
+ add_province_modifier = {
2525
+ name = kon_south_african_hegemony_province
2526
+ duration = -1
2527
+ }
2528
+ }
2529
+ else_if = {
2530
+ limit = {
2531
+ has_province_modifier = kon_south_african_hegemony_province
2532
+ }
2533
+ remove_province_modifier = kon_south_african_hegemony_province
2534
+ }
2535
+ if = {
2536
+ limit = {
2537
+ NOT = { has_province_modifier = nor_scandinavian_empire_local }
2538
+ owner = {
2539
+ has_country_modifier = nor_scandinavian_empire
2540
+ }
2541
+ culture_group = scandinavian
2542
+ }
2543
+ add_province_modifier = {
2544
+ name = nor_scandinavian_empire_local
2545
+ duration = -1
2546
+ }
2547
+ }
2548
+ else_if = {
2549
+ limit = {
2550
+ has_province_modifier = nor_scandinavian_empire_local
2551
+ }
2552
+ remove_province_modifier = nor_scandinavian_empire_local
2553
+ }
2554
+ if = {
2555
+ limit = {
2556
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province }
2557
+ culture_group = germanic
2558
+ owner = {
2559
+ has_country_modifier = sca_hegemony_over_germany
2560
+ NOT = { culture_group = PREV }
2561
+ NOT = { primary_culture = PREV }
2562
+ }
2563
+ has_owner_accepted_culture = no
2564
+ }
2565
+ add_province_modifier = {
2566
+ name = sca_hegemony_over_germany_province
2567
+ duration = -1
2568
+ }
2569
+ }
2570
+ else_if = {
2571
+ limit = {
2572
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province_same_culture }
2573
+ culture_group = germanic
2574
+ owner = {
2575
+ has_country_modifier = sca_hegemony_over_germany
2576
+ culture_group = PREV
2577
+ NOT = { primary_culture = PREV }
2578
+ }
2579
+ has_owner_accepted_culture = no
2580
+ }
2581
+ add_province_modifier = {
2582
+ name = sca_hegemony_over_germany_province_same_culture
2583
+ duration = -1
2584
+ }
2585
+ }
2586
+ else_if = {
2587
+ limit = {
2588
+ OR = {
2589
+ has_province_modifier = sca_hegemony_over_germany_province
2590
+ has_province_modifier = sca_hegemony_over_germany_province_same_culture
2591
+ }
2592
+ }
2593
+ remove_province_modifier = sca_hegemony_over_germany_province
2594
+ remove_province_modifier = sca_hegemony_over_germany_province_same_culture
2595
+ }
2596
+ }
2597
+
2598
+ #Country effect
2599
+ imperial_modifiers_on_culture_country_effect = {
2600
+ if = {
2601
+ limit = {
2602
+ any_owned_province = {
2603
+ OR = {
2604
+ has_province_modifier = kon_south_african_hegemony_province
2605
+ has_province_modifier = nor_scandinavian_empire_local
2606
+ has_province_modifier = sca_hegemony_over_germany_province
2607
+ has_province_modifier = sca_hegemony_over_germany_province_same_culture
2608
+ }
2609
+ }
2610
+ }
2611
+ every_owned_province = {
2612
+ remove_province_modifier = kon_south_african_hegemony_province
2613
+ remove_province_modifier = nor_scandinavian_empire_local
2614
+ remove_province_modifier = sca_hegemony_over_germany_province
2615
+ remove_province_modifier = sca_hegemony_over_germany_province_same_culture
2616
+ }
2617
+ }
2618
+ if = {
2619
+ limit = {
2620
+ has_country_modifier = kon_south_african_hegemony
2621
+ }
2622
+ every_owned_province = {
2623
+ limit = {
2624
+ OR = {
2625
+ culture_group = southern_african
2626
+ culture_group = african
2627
+ culture_group = great_lakes_group
2628
+ }
2629
+ NOT = { has_province_modifier = kon_south_african_hegemony_province }
2630
+ has_owner_accepted_culture = no
2631
+ }
2632
+ add_province_modifier = {
2633
+ name = kon_south_african_hegemony_province
2634
+ duration = -1
2635
+ }
2636
+ }
2637
+ }
2638
+ if = {
2639
+ limit = {
2640
+ has_country_modifier = sca_hegemony_over_germany
2641
+ }
2642
+ every_owned_province = {
2643
+ limit = {
2644
+ culture_group = germanic
2645
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province }
2646
+ has_owner_accepted_culture = no
2647
+ owner = {
2648
+ NOT = { primary_culture = PREV }
2649
+ NOT = { culture_group = PREV }
2650
+ }
2651
+ }
2652
+ add_province_modifier = {
2653
+ name = sca_hegemony_over_germany_province
2654
+ duration = -1
2655
+ }
2656
+ }
2657
+ every_owned_province = {
2658
+ limit = {
2659
+ culture_group = germanic
2660
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province_same_culture }
2661
+ has_owner_accepted_culture = no
2662
+ owner = {
2663
+ NOT = { primary_culture = PREV }
2664
+ culture_group = PREV
2665
+ }
2666
+ }
2667
+ add_province_modifier = {
2668
+ name = sca_hegemony_over_germany_province_same_culture
2669
+ duration = -1
2670
+ }
2671
+ }
2672
+ }
2673
+ if = {
2674
+ limit = {
2675
+ has_country_modifier = nor_scandinavian_empire
2676
+ }
2677
+ every_owned_province = {
2678
+ limit = {
2679
+ culture_group = scandinavian
2680
+ NOT = { has_province_modifier = nor_scandinavian_empire_local }
2681
+ }
2682
+ add_province_modifier = {
2683
+ name = nor_scandinavian_empire_local
2684
+ duration = -1
2685
+ }
2686
+ }
2687
+ }
2688
+ }
2689
+
2690
+ #Country effect
2691
+ imperial_modifiers_on_primary_culture_change_effect = {
2692
+ if = {
2693
+ limit = {
2694
+ has_country_modifier = kon_south_african_hegemony
2695
+ NOT = { culture_group = kongo_group }
2696
+ }
2697
+ remove_country_modifier = kon_south_african_hegemony
2698
+ every_owned_province = {
2699
+ limit = {
2700
+ has_province_modifier = kon_south_african_hegemony_province
2701
+ }
2702
+ remove_province_modifier = kon_south_african_hegemony_province
2703
+ }
2704
+ }
2705
+ every_owned_province = {
2706
+ remove_province_modifier = sca_hegemony_over_germany_province
2707
+ remove_province_modifier = sca_hegemony_over_germany_province_same_culture
2708
+ }
2709
+ if = {
2710
+ limit = {
2711
+ has_country_modifier = sca_hegemony_over_germany
2712
+ }
2713
+ every_owned_province = {
2714
+ limit = {
2715
+ culture_group = germanic
2716
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province }
2717
+ has_owner_accepted_culture = no
2718
+ owner = {
2719
+ NOT = { primary_culture = PREV }
2720
+ NOT = { culture_group = PREV }
2721
+ }
2722
+ }
2723
+ add_province_modifier = {
2724
+ name = sca_hegemony_over_germany_province
2725
+ duration = -1
2726
+ }
2727
+ }
2728
+ every_owned_province = {
2729
+ limit = {
2730
+ culture_group = germanic
2731
+ NOT = { has_province_modifier = sca_hegemony_over_germany_province_same_culture }
2732
+ has_owner_accepted_culture = no
2733
+ owner = {
2734
+ NOT = { primary_culture = PREV }
2735
+ culture_group = PREV
2736
+ }
2737
+ }
2738
+ add_province_modifier = {
2739
+ name = sca_hegemony_over_germany_province_same_culture
2740
+ duration = -1
2741
+ }
2742
+ }
2743
+ }
2744
+ if = {
2745
+ limit = {
2746
+ has_country_modifier = nor_scandinavian_empire
2747
+ NOT = { culture_group = scandinavian }
2748
+ }
2749
+ remove_country_modifier = nor_scandinavian_empire
2750
+ every_owned_province = {
2751
+ limit = {
2752
+ has_province_modifier = nor_scandinavian_empire_local
2753
+ }
2754
+ remove_province_modifier = nor_scandinavian_empire_local
2755
+ }
2756
+ }
2757
+ }
2758
+
2759
+ on_war_declaration_effect = {
2760
+ if = {
2761
+ limit = { has_country_modifier = janissary_policemen }
2762
+ remove_country_modifier = janissary_policemen
2763
+ }
2764
+ if = {
2765
+ limit = { has_country_modifier = janissary_fireighters }
2766
+ remove_country_modifier = janissary_fireighters
2767
+ }
2768
+ if = {
2769
+ limit = { has_country_modifier = janissary_palace_guardians }
2770
+ remove_country_modifier = janissary_palace_guardians
2771
+ }
2772
+ random_list = {
2773
+ 1 = {
2774
+ country_event = {
2775
+ id = new_court_flavour_events.21
2776
+ }
2777
+ }
2778
+ 9 = {}
2779
+ }
2780
+ }
2781
+
2782
+ remove_all_age_of_discovery_modifiers = {
2783
+ if = {
2784
+ limit = {
2785
+ NOT = { current_age = age_of_discovery }
2786
+ }
2787
+ if = {
2788
+ limit = { has_country_modifier = eng_a_house_united }
2789
+ remove_country_modifier = eng_a_house_united
2790
+ }
2791
+ if = {
2792
+ limit = { has_country_modifier = eng_jousting_tournaments }
2793
+ remove_country_modifier = eng_jousting_tournaments
2794
+ }
2795
+ if = {
2796
+ limit = { has_country_modifier = YEM_rise_of_yemen }
2797
+ remove_country_modifier = YEM_rise_of_yemen
2798
+ }
2799
+ }
2800
+ }
2801
+ remove_all_age_of_reformation_modifiers = {
2802
+ if = {
2803
+ limit = {
2804
+ NOT = { current_age = age_of_reformation }
2805
+ }
2806
+ if = {
2807
+ limit = { has_country_modifier = eng_the_age_of_reformation }
2808
+ remove_country_modifier = eng_the_age_of_reformation
2809
+ }
2810
+ if = {
2811
+ limit = { has_country_modifier = eng_reformer_ruler }
2812
+ remove_country_modifier = eng_reformer_ruler
2813
+ }
2814
+ if = {
2815
+ limit = { has_country_modifier = eng_catholic_ruler }
2816
+ remove_country_modifier = eng_catholic_ruler
2817
+ }
2818
+ if = {
2819
+ limit = { has_country_modifier = eng_tolerant_ruler }
2820
+ remove_country_modifier = eng_tolerant_ruler
2821
+ }
2822
+ if = {
2823
+ limit = { has_country_modifier = eng_reformer_ruler_for_catholic_gb }
2824
+ remove_country_modifier = eng_reformer_ruler_for_catholic_gb
2825
+ }
2826
+ if = {
2827
+ limit = { has_country_modifier = eng_catholic_ruler_for_reformed_gb }
2828
+ remove_country_modifier = eng_catholic_ruler_for_reformed_gb
2829
+ }
2830
+ if = {
2831
+ limit = { has_country_modifier = BYZ_ceasarean_conquests }
2832
+ remove_country_modifier = BYZ_ceasarean_conquests
2833
+ }
2834
+ if = {
2835
+ limit = { has_country_modifier = BYZ_economic_intimidation }
2836
+ remove_country_modifier = BYZ_economic_intimidation
2837
+ }
2838
+ if = {
2839
+ limit = { has_country_modifier = BYZ_roman_vigour }
2840
+ remove_country_modifier = BYZ_roman_vigour
2841
+ }
2842
+ }
2843
+ }
2844
+ remove_all_age_of_absolutism_modifiers = {
2845
+ #if = {
2846
+ # limit = {
2847
+ # NOT = { current_age = age_of_absolutism }
2848
+ # }
2849
+ #}
2850
+ #Empty as there are no modifiers specific for this age
2851
+ }
2852
+ remove_all_age_of_revolution_modifiers = {
2853
+ #if = {
2854
+ # limit = {
2855
+ # NOT = { current_age = age_of_revolutions }
2856
+ # }
2857
+ #}
2858
+ #Empty as there are no modifiers specific for this age
2859
+ }
2860
+
2861
+ set_age_passed_global_flag = {
2862
+ if = {
2863
+ limit = {
2864
+ not = { current_age = age_of_discovery }
2865
+ or = {
2866
+ current_age = age_of_reformation
2867
+ current_age = age_of_absolutism
2868
+ current_age = age_of_revolutions
2869
+ }
2870
+ }
2871
+ set_global_flag = age_of_discovery_passed
2872
+ }
2873
+ if = {
2874
+ limit = {
2875
+ has_global_flag = age_of_discovery_passed
2876
+ not = { current_age = age_of_reformation }
2877
+ or = {
2878
+ current_age = age_of_absolutism
2879
+ current_age = age_of_revolutions
2880
+ }
2881
+ }
2882
+ set_global_flag = age_of_reformation_passed
2883
+ }
2884
+ if = {
2885
+ limit = {
2886
+ has_global_flag = age_of_discovery_passed
2887
+ has_global_flag = age_of_reformation_passed
2888
+ not = { current_age = age_of_absolutism }
2889
+ current_age = age_of_revolutions
2890
+ }
2891
+ set_global_flag = age_of_absolutism_passed
2892
+ }
2893
+ if = {
2894
+ limit = {
2895
+ has_global_flag = age_of_discovery_passed
2896
+ has_global_flag = age_of_reformation_passed
2897
+ has_global_flag = age_of_absolutism_passed
2898
+ not = { current_age = age_of_revolutions }
2899
+ }
2900
+ set_global_flag = age_of_revolutions_passed
2901
+ }
2902
+ }
2903
+
2904
+ remove_all_age_timed_modifiers = {
2905
+ remove_all_age_of_discovery_modifiers = yes
2906
+ remove_all_age_of_reformation_modifiers = yes
2907
+ remove_all_age_of_absolutism_modifiers = yes
2908
+ remove_all_age_of_revolution_modifiers = yes
2909
+ # Generic ones
2910
+ if = {
2911
+ limit = { has_country_modifier = jap_stability_edo_period_modifier }
2912
+ remove_country_modifier = jap_stability_edo_period_modifier
2913
+ }
2914
+ }
2915
+
2916
+ add_country_modifier_for_age = {
2917
+ if = {
2918
+ limit = {
2919
+ NOT = { has_global_flag = $age$_passed }
2920
+ }
2921
+ add_country_modifier = {
2922
+ name = $name$
2923
+ duration = -1
2924
+ desc = until_end_of_$age$_desc
2925
+ }
2926
+ }
2927
+ [[else]
2928
+ else = {
2929
+ $else$
2930
+ }
2931
+ ]
2932
+ }
2933
+
2934
+ on_parliament_abolished_effect = {
2935
+ custom_tooltip = on_parliament_abolished_effect_tt
2936
+ hidden_effect = {
2937
+
2938
+ }
2939
+ }
2940
+
2941
+ set_parliament_action_flag = {
2942
+ hidden_effect = {
2943
+ set_country_flag = $parliament_action$_flag
2944
+ }
2945
+ }
2946
+
2947
+ on_harmonized_effect = {
2948
+ if = {
2949
+ limit = {
2950
+ has_government_attribute = full_loyalty_on_harmonization
2951
+ }
2952
+ add_estate_loyalty = {
2953
+ estate = estate_church
2954
+ loyalty = 100
2955
+ }
2956
+ add_adm_power = 50
2957
+ }
2958
+ }
2959
+
2960
+ on_province_culture_change_effect = {
2961
+ if = {
2962
+ limit = { has_province_modifier = tur_competent_pashas }
2963
+ remove_province_modifier = tur_competent_pashas
2964
+ }
2965
+ if = {
2966
+ limit = { has_province_modifier = the_provincial_system }
2967
+ remove_province_modifier = the_provincial_system
2968
+ }
2969
+ if = {
2970
+ limit = {
2971
+ owner = {
2972
+ has_country_flag = tur_improved_pashas
2973
+ }
2974
+ }
2975
+ area = {
2976
+ limit = { owned_by = owner NOT = { culture_group = owner } }
2977
+ add_province_modifier = { name = tur_competent_pashas duration = -1 hidden = yes }
2978
+ }
2979
+ }
2980
+ if = {
2981
+ limit = {
2982
+ owner = {
2983
+ has_government_attribute = pasha_extra_bonuses
2984
+ }
2985
+ }
2986
+ area = {
2987
+ limit = { owned_by = owner NOT = { culture_group = owner } }
2988
+ add_province_modifier = { name = the_provincial_system duration = -1 hidden = yes }
2989
+ }
2990
+ }
2991
+ }
2992
+
2993
+ on_province_culture_converted_effect = {
2994
+ owner = {
2995
+ change_variable = {
2996
+ which = num_converted_culture
2997
+ value = 1
2998
+ }
2999
+ }
3000
+ if = {
3001
+ limit = { has_owner_culture = yes }
3002
+ owner = {
3003
+ change_variable = {
3004
+ which = num_converted_to_own_culture
3005
+ value = 1
3006
+ }
3007
+ }
3008
+ }
3009
+ if = {
3010
+ limit = {
3011
+ owner = {
3012
+ has_country_flag = arm_coversion_bonus
3013
+ }
3014
+ has_owner_culture = yes
3015
+ NOT = {
3016
+ has_province_flag = arm_converted_bonus
3017
+ }
3018
+ }
3019
+ add_base_tax = 1
3020
+ add_base_manpower = 1
3021
+ add_base_production = 1
3022
+ set_province_flag = arm_converted_bonus
3023
+ }
3024
+ }
3025
+
3026
+ on_colony_finished_effect = {
3027
+ if = {
3028
+ limit = {
3029
+ owner = {
3030
+ OR = {
3031
+ has_country_modifier = colonial_venture_act_modifier
3032
+ has_country_flag = can_select_trade_goods_for_colonies
3033
+ has_government_attribute = selectable_trade_goods_for_colonies
3034
+ }
3035
+ NOT = { has_country_flag = eng_disabled_colonial_ventures }
3036
+ }
3037
+ NOT = { has_province_flag = had_trade_good_change_event }
3038
+ }
3039
+ set_province_flag = had_trade_good_change_event
3040
+ province_event = {
3041
+ id = flavor_gbr.200
3042
+ }
3043
+ }
3044
+ }
3045
+
3046
+ on_colonist_boosting_colony_effect = {
3047
+ hidden_effect = {
3048
+ if = {
3049
+ limit = {
3050
+ OR = {
3051
+ religion = noreligion
3052
+ #test if colonists outnumber natives
3053
+ variable_arithmetic_trigger = {
3054
+ custom_tooltip = colonysize_is_larger_than_nativesize_tt
3055
+ export_to_variable = {
3056
+ which = vab_colonysize
3057
+ value = trigger_value:colonysize
3058
+ }
3059
+ export_to_variable = {
3060
+ which = vab_nativesize
3061
+ value = trigger_value:native_size
3062
+ }
3063
+ multiply_variable = {
3064
+ which = vab_nativesize
3065
+ value = 100
3066
+ }
3067
+ check_variable = {
3068
+ which = vab_colonysize
3069
+ which = vab_nativesize
3070
+ }
3071
+ }
3072
+ is_in_capital_area = yes
3073
+ continent = north_america
3074
+ continent = south_america
3075
+ continent = new_world
3076
+ NOT = {
3077
+ OR = {
3078
+ has_dlc = "Dharma"
3079
+ has_dlc = "Wealth of Nations"
3080
+ }
3081
+ }
3082
+ }
3083
+ }
3084
+ change_religion = FROM
3085
+ }
3086
+ if = {
3087
+ limit = {
3088
+ OR = {
3089
+ culture = noculture
3090
+ #test if colonists outnumber natives
3091
+ variable_arithmetic_trigger = {
3092
+ custom_tooltip = colonysize_is_larger_than_nativesize_tt
3093
+ export_to_variable = {
3094
+ which = vab_colonysize
3095
+ value = trigger_value:colonysize
3096
+ }
3097
+ export_to_variable = {
3098
+ which = vab_nativesize
3099
+ value = trigger_value:native_size
3100
+ }
3101
+ multiply_variable = {
3102
+ which = vab_nativesize
3103
+ value = 100
3104
+ }
3105
+ check_variable = {
3106
+ which = vab_colonysize
3107
+ which = vab_nativesize
3108
+ }
3109
+ }
3110
+ is_in_capital_area = yes
3111
+ continent = north_america
3112
+ continent = south_america
3113
+ continent = new_world
3114
+ NOT = {
3115
+ OR = {
3116
+ has_dlc = "Dharma"
3117
+ has_dlc = "Wealth of Nations"
3118
+ }
3119
+ }
3120
+ }
3121
+ }
3122
+ change_culture = FROM
3123
+ change_original_culture = FROM
3124
+ }
3125
+ }
3126
+ }
3127
+
3128
+ on_alliance_broken_effect = {
3129
+ if = {
3130
+ limit = { has_country_modifier = mng_trade_access_in_china_modifier }
3131
+ remove_country_modifier = mng_trade_access_in_china_modifier
3132
+ }
3133
+ if = {
3134
+ limit = { has_country_modifier = rus_russian_caucasian_alliance FROM = { has_country_modifier = rus_russian_caucasian_alliance } }
3135
+ remove_country_modifier = rus_russian_caucasian_alliance
3136
+ FROM = { remove_country_modifier = rus_russian_caucasian_alliance }
3137
+ }
3138
+ if = {
3139
+ limit = { has_country_modifier = gbr_english_dutch_trade_partners FROM = { has_country_modifier = gbr_english_dutch_trade_partners } }
3140
+ remove_country_modifier = gbr_english_dutch_trade_partners
3141
+ FROM = { remove_country_modifier = gbr_english_dutch_trade_partners }
3142
+ }
3143
+ if = {
3144
+ limit = {
3145
+ has_saved_global_event_target = tur_ottoman_trade_partner
3146
+ OR = {
3147
+ tag = event_target:tur_ottoman_trade_partner
3148
+ FROM = { tag = event_target:tur_ottoman_trade_partner }
3149
+ }
3150
+ }
3151
+ if = {
3152
+ limit = { tag = event_target:tur_ottoman_trade_partner }
3153
+ if = {
3154
+ limit = { has_country_modifier = tur_ottoman_venetian_trade_deal_modifier }
3155
+ remove_country_modifier = tur_ottoman_venetian_trade_deal_modifier
3156
+ }
3157
+ every_owned_province = {
3158
+ limit = { has_province_modifier = tur_ottoman_venetian_trade_deal_modifier_prov }
3159
+ remove_province_modifier = tur_ottoman_venetian_trade_deal_modifier_prov
3160
+ }
3161
+ }
3162
+ FROM = {
3163
+ if = {
3164
+ limit = { tag = event_target:tur_ottoman_trade_partner }
3165
+ if = {
3166
+ limit = { has_country_modifier = tur_ottoman_venetian_trade_deal_modifier }
3167
+ remove_country_modifier = tur_ottoman_venetian_trade_deal_modifier
3168
+ }
3169
+ every_owned_province = {
3170
+ limit = { has_province_modifier = tur_ottoman_venetian_trade_deal_modifier_prov }
3171
+ remove_province_modifier = tur_ottoman_venetian_trade_deal_modifier_prov
3172
+ }
3173
+ }
3174
+ }
3175
+ clear_global_event_target = tur_ottoman_trade_partner
3176
+ }
3177
+ FROM = {
3178
+ if = {
3179
+ limit = { has_country_modifier = mng_trade_access_in_china_modifier }
3180
+ remove_country_modifier = mng_trade_access_in_china_modifier
3181
+ }
3182
+ }
3183
+ change_asha_vahishta = { value = -5 }
3184
+ if = {
3185
+ limit = {
3186
+ has_country_modifier = mam_ven_cooperation_modifier
3187
+ NOT = { alliance_with = VEN }
3188
+ }
3189
+ remove_country_modifier = mam_ven_cooperation_modifier
3190
+ }
3191
+ FROM = {
3192
+ if = {
3193
+ limit = {
3194
+ has_country_modifier = mam_ven_cooperation_modifier
3195
+ NOT = { alliance_with = VEN }
3196
+ }
3197
+ remove_country_modifier = mam_ven_cooperation_modifier
3198
+ }
3199
+ }
3200
+ }
3201
+
3202
+ on_adm_development_effect = {
3203
+ if = {
3204
+ limit = { owner = { has_country_flag = enable_supplemental_development_flag } }
3205
+ random_list = {
3206
+ 20 = { add_base_tax = 1 }
3207
+ 80 = { }
3208
+ }
3209
+ }
3210
+ if = {
3211
+ limit = {
3212
+ owner = { has_country_modifier = lit_increased_dev_modifier }
3213
+ }
3214
+ add_base_tax = 1
3215
+ }
3216
+ if = {
3217
+ limit = { has_state_edict = chinese_industrialization }
3218
+ random_list = {
3219
+ 10 = { add_base_tax = 1 }
3220
+ 10 = { add_prosperity = 1 }
3221
+ 10 = { add_province_modifier = { name = qng_center_of_industrialization_modifier duration = 3650 } }
3222
+ 70 = { }
3223
+ }
3224
+ }
3225
+ if = {
3226
+ limit = { owner = { has_country_modifier = JAP_cadastral_surveys has_dlc = "Domination" } }
3227
+ change_estate_land_share = {
3228
+ estate = all
3229
+ share = -0.2
3230
+ }
3231
+ }
3232
+
3233
+ if = {
3234
+ limit = { owner = { has_country_modifier = jap_20_years_devving_tax_yields_twice_bonus_1_burgher_loyalt_modifier } }
3235
+ add_base_tax = 1
3236
+ add_estate_loyalty = {
3237
+ estate = estate_burghers
3238
+ loyalty = 1
3239
+ }
3240
+ }
3241
+
3242
+ #if = {
3243
+ # limit = {
3244
+ # OR = {
3245
+ # region = british_isles_region
3246
+ # region = france_region
3247
+ # }
3248
+ # owner = { has_country_modifier = eng_empire_of_the_island }
3249
+ # }
3250
+ # random_list = {
3251
+ # 4 = { add_base_tax = 1 }
3252
+ # 6 = {}
3253
+ # }
3254
+ #}
3255
+ }
3256
+ on_dip_development_effect = {
3257
+ if = {
3258
+ limit = { owner = { has_country_flag = enable_supplemental_development_flag } }
3259
+ random_list = {
3260
+ 20 = { add_base_production = 1 }
3261
+ 80 = { }
3262
+ }
3263
+ }
3264
+ if = {
3265
+ limit = {
3266
+ owner = { has_country_modifier = lit_increased_dev_modifier }
3267
+ }
3268
+ add_base_production = 1
3269
+ }
3270
+ if = {
3271
+ limit = { has_state_edict = chinese_industrialization }
3272
+ random_list = {
3273
+ 10 = { add_base_production = 1 }
3274
+ 10 = { add_prosperity = 1 }
3275
+ 10 = { add_province_modifier = { name = qng_center_of_industrialization_modifier duration = 3650 } }
3276
+ 70 = { }
3277
+ }
3278
+ }
3279
+
3280
+ #if = {
3281
+ # limit = {
3282
+ # OR = {
3283
+ # region = british_isles_region
3284
+ # region = france_region
3285
+ # }
3286
+ # owner = { has_country_modifier = eng_empire_of_the_island }
3287
+ # }
3288
+ # random_list = {
3289
+ # 4 = { add_base_production = 1 }
3290
+ # 6 = {}
3291
+ # }
3292
+ #}
3293
+ }
3294
+ on_mil_development_effect = {
3295
+ if = {
3296
+ limit = { owner = { has_country_flag = enable_supplemental_development_flag } }
3297
+ random_list = {
3298
+ 20 = { add_base_manpower = 1 }
3299
+ 80 = { }
3300
+ }
3301
+ }
3302
+ if = {
3303
+ limit = {
3304
+ owner = { has_country_modifier = lit_increased_dev_modifier }
3305
+ }
3306
+ add_base_manpower = 1
3307
+ }
3308
+ if = {
3309
+ limit = { has_state_edict = chinese_industrialization }
3310
+ random_list = {
3311
+ 10 = { add_base_manpower = 1 }
3312
+ 10 = { add_prosperity = 1 }
3313
+ 10 = { add_province_modifier = { name = qng_center_of_industrialization_modifier duration = 3650 } }
3314
+ 70 = { }
3315
+ }
3316
+ }
3317
+
3318
+ #if = {
3319
+ # limit = {
3320
+ # OR = {
3321
+ # region = british_isles_region
3322
+ # region = france_region
3323
+ # }
3324
+ # owner = { has_country_modifier = eng_empire_of_the_island }
3325
+ # }
3326
+ # random_list = {
3327
+ # 4 = { add_base_manpower = 1 }
3328
+ # 6 = {}
3329
+ # }
3330
+ #}
3331
+ }
3332
+ on_development_effect = {
3333
+ owner = {
3334
+ change_variable = {
3335
+ which = num_of_times_developed
3336
+ value = 1
3337
+ }
3338
+ }
3339
+
3340
+ if = {
3341
+ limit = {
3342
+ owner = {
3343
+ has_mission = ARB_the_harsh_desert
3344
+ }
3345
+ has_climate = arid
3346
+ }
3347
+ owner = {
3348
+ change_variable = {
3349
+ which = num_of_times_developed_arid
3350
+ value = 1
3351
+ }
3352
+ }
3353
+ }
3354
+ }
3355
+
3356
+ # THIS = Province, FROM = Country, ROOT = Merc Unit
3357
+ on_mercenary_recruited_effect = {
3358
+ if = {
3359
+ limit = {
3360
+ FROM = { has_not_free_mercs_trait = yes }
3361
+ is_not_free_merc_company = yes
3362
+ OR = {
3363
+ FROM = { NOT = { has_country_flag = oyo_cavalry_do_not_consume_ap } }
3364
+ ROOT = { NOT = { mercenary_company = merc_oyo_cavalry } }
3365
+ }
3366
+ }
3367
+ if = {
3368
+ limit = {
3369
+ FROM = {
3370
+ OR = {
3371
+ has_country_flag = fifty_percent_merc_army_professionalism_cost
3372
+ has_country_modifier = pol_cheap_ap_mercs_modifier
3373
+ }
3374
+ }
3375
+ }
3376
+ FROM = { add_army_professionalism = -0.025 }
3377
+ }
3378
+ else = {
3379
+ FROM = { add_army_professionalism = -0.05 }
3380
+ }
3381
+ }
3382
+ }
3383
+
3384
+ on_parliament_debate_reset_effect = {
3385
+ add_country_modifier = {
3386
+ name = reset_parliament_debate_modifier
3387
+ duration = 3650
3388
+ }
3389
+ add_corruption = 2
3390
+ if = {
3391
+ limit = {
3392
+ has_government_mechanic = parliament_vs_monarchy_mechanic
3393
+ }
3394
+ add_government_power = {
3395
+ mechanic_type = parliament_vs_monarchy_mechanic
3396
+ power_type = governmental_power
3397
+ value = 20
3398
+ }
3399
+ }
3400
+ }
3401
+
3402
+ on_parliament_seat_given_effect = {
3403
+ owner = {
3404
+ if = {
3405
+ limit = { has_country_flag = fra_powerful_parliament_flag }
3406
+ change_government_reform_progress = 5
3407
+ random_list = {
3408
+ 1 = { add_adm_power = 10 }
3409
+ 1 = { add_dip_power = 10 }
3410
+ 1 = { add_mil_power = 10 }
3411
+ }
3412
+ }
3413
+ if = {
3414
+ limit = {
3415
+ has_government_mechanic = parliament_vs_monarchy_mechanic
3416
+ }
3417
+ add_government_power = {
3418
+ mechanic_type = parliament_vs_monarchy_mechanic
3419
+ power_type = governmental_power
3420
+ value = -5
3421
+ }
3422
+ }
3423
+ if = {
3424
+ limit = {
3425
+ has_government_attribute = parliament_seat_bonus
3426
+ }
3427
+ add_estate_loyalty = {
3428
+ estate = all
3429
+ loyalty = 1
3430
+ }
3431
+ }
3432
+ }
3433
+ if = {
3434
+ limit = {
3435
+ owner = {
3436
+ has_government_attribute = parliament_seat_bonus
3437
+ }
3438
+ }
3439
+ add_province_modifier = {
3440
+ name = gov_buffed_parliament_seat
3441
+ duration = -1
3442
+ }
3443
+ }
3444
+ }
3445
+ on_parliament_seat_lost_effect = {
3446
+ owner = {
3447
+ if = {
3448
+ limit = {
3449
+ has_government_mechanic = parliament_vs_monarchy_mechanic
3450
+ }
3451
+ add_government_power = {
3452
+ mechanic_type = parliament_vs_monarchy_mechanic
3453
+ power_type = governmental_power
3454
+ value = 5
3455
+ }
3456
+ }
3457
+ }
3458
+ if = {
3459
+ limit = {
3460
+ has_province_modifier = gov_buffed_parliament_seat
3461
+ }
3462
+ remove_province_modifier = gov_buffed_parliament_seat
3463
+ }
3464
+ }
3465
+ on_parliament_debate_failed_effect = {
3466
+ if = {
3467
+ limit = {
3468
+ has_government_mechanic = parliament_vs_monarchy_mechanic
3469
+ }
3470
+ add_government_power = {
3471
+ mechanic_type = parliament_vs_monarchy_mechanic
3472
+ power_type = governmental_power
3473
+ value = 33
3474
+ }
3475
+ }
3476
+ }
3477
+ on_parliament_debate_succeeded_effect = {
3478
+ if = {
3479
+ limit = {
3480
+ has_government_mechanic = parliament_vs_monarchy_mechanic
3481
+ }
3482
+ add_government_power = {
3483
+ mechanic_type = parliament_vs_monarchy_mechanic
3484
+ power_type = governmental_power
3485
+ value = -20
3486
+ }
3487
+ }
3488
+ if = {
3489
+ limit = { has_government_attribute = gain_rt_from_parliament }
3490
+ add_republican_tradition = 5
3491
+ }
3492
+ }
3493
+
3494
+ on_main_war_won_effect = {
3495
+ if = {
3496
+ limit = {
3497
+ has_government_attribute = winning_wars_gives_rt
3498
+ }
3499
+ add_republican_tradition = 5
3500
+ }
3501
+ if = {
3502
+ limit = {
3503
+ has_government_attribute = winning_war_increases_legitimacy
3504
+ }
3505
+ add_legitimacy = 5
3506
+ add_devotion = 5
3507
+ add_meritocracy = 5
3508
+ add_horde_unity = 5
3509
+ add_republican_tradition = 2
3510
+ }
3511
+ if = {
3512
+ limit = {
3513
+ has_country_modifier = swe_fight_for_independence
3514
+ NOT = { has_country_flag = swe_defeated_denmark }
3515
+ FROM = { tag = DAN }
3516
+ }
3517
+ set_country_flag = swe_defeated_denmark
3518
+ }
3519
+ if = {
3520
+ limit = {
3521
+ has_country_flag = nor_norwegian_independence_modifier
3522
+ is_subject = no
3523
+ FROM = { tag = DAN }
3524
+ }
3525
+ clr_country_flag = nor_norwegian_independence_modifier
3526
+ remove_country_modifier = nor_norwegian_independence_war_mod
3527
+ }
3528
+ if = {
3529
+ limit = {
3530
+ ROOT = {
3531
+ religion = jewish
3532
+ has_church_aspect = judaism_purim_teachings_aspect
3533
+ }
3534
+ }
3535
+ add_church_power = 75
3536
+ }
3537
+ if = {
3538
+ limit = {
3539
+ has_country_flag = nor_norwegian_independence_modifier
3540
+ is_subject = no
3541
+ }
3542
+ clr_country_flag = nor_norwegian_independence_modifier
3543
+ remove_country_modifier = nor_norwegian_independence_war_mod
3544
+ }
3545
+ if = {
3546
+ limit = {
3547
+ ROOT = {
3548
+ has_mission = swe_devastate_the_christians
3549
+ NOT = { mission_completed = swe_devastate_the_christians }
3550
+ religion = norse_pagan_reformed
3551
+ }
3552
+ FROM = { religion_group = christian }
3553
+ }
3554
+ change_variable = {
3555
+ which = swe_won_wars_against_christians
3556
+ value = 1
3557
+ }
3558
+ }
3559
+ if = {
3560
+ limit = {
3561
+ has_dlc = "Mandate of Heaven"
3562
+ ROOT = {
3563
+ is_emperor_of_china = yes
3564
+ has_country_flag = mng_outward_perfection_flag
3565
+ }
3566
+ }
3567
+ add_mandate = 10
3568
+ }
3569
+ if = {
3570
+ limit = {
3571
+ ROOT = {
3572
+ has_government_mechanic = end_time_mechanic
3573
+ NOT = {
3574
+ government_power_frozen = {
3575
+ mechanic_type = end_time_mechanic
3576
+ power_type = fanatic_zeal
3577
+ }
3578
+ }
3579
+ }
3580
+ }
3581
+ add_government_power = {
3582
+ mechanic_type = end_time_mechanic
3583
+ power_type = fanatic_zeal
3584
+ value = -5
3585
+ }
3586
+ }
3587
+
3588
+ if = {
3589
+ limit = {
3590
+ FROM = {
3591
+ religion_group = ROOT
3592
+ NOT = { religion = ROOT }
3593
+ }
3594
+ }
3595
+ change_variable = {
3596
+ which = num_of_wars_won_against_heretics
3597
+ value = 1
3598
+ }
3599
+ }
3600
+ if = {
3601
+ limit = {
3602
+ FROM = {
3603
+ NOT = { religion = ROOT }
3604
+ }
3605
+ }
3606
+ change_variable = {
3607
+ which = num_of_wars_won_against_non_believers
3608
+ value = 1
3609
+ }
3610
+ }
3611
+ }
3612
+
3613
+ on_change_tag_effect = {
3614
+ hidden_effect = {
3615
+ restore_country_name = yes
3616
+ restore_country_color = yes
3617
+ #England specific
3618
+ if = { limit = { has_country_modifier = royal_impressment_act_modifier } remove_country_modifier = royal_impressment_act_modifier }
3619
+ if = { limit = { has_country_modifier = isolationism_act_modifier } remove_country_modifier = isolationism_act_modifier }
3620
+ if = { limit = { has_country_modifier = colonial_act_modifier } remove_country_modifier = colonial_act_modifier }
3621
+ if = { limit = { has_country_modifier = military_reassignment_act_modifier } remove_country_modifier = military_reassignment_act_modifier }
3622
+ if = { limit = { has_country_modifier = acts_of_development_modifier } remove_country_modifier = acts_of_development_modifier }
3623
+ if = { limit = { has_country_modifier = global_empire_act_modifier } remove_country_modifier = global_empire_act_modifier }
3624
+ if = { limit = { has_country_modifier = naval_reassignment_act_modifier } remove_country_modifier = naval_reassignment_act_modifier }
3625
+ if = { limit = { has_country_modifier = diplomatic_act_modifier } remove_country_modifier = diplomatic_act_modifier }
3626
+ if = { limit = { has_country_modifier = internal_focus_act_modifier } remove_country_modifier = internal_focus_act_modifier }
3627
+ }
3628
+ }
3629
+
3630
+ on_force_conversion_effect = {
3631
+ #if = { #Commented out for now because Catholicism has received a lot of buffs already.
3632
+ # limit = {
3633
+ # FROM = { religion = catholic }
3634
+ # }
3635
+ # if = {
3636
+ # limit = { ROOT = { government_rank = 3 } }
3637
+ # FROM = { add_papal_influence = 20 }
3638
+ # }
3639
+ # else_if = {
3640
+ # limit = { ROOT = { government_rank = 2 } }
3641
+ # FROM = { add_papal_influence = 10 }
3642
+ # }
3643
+ # else = {
3644
+ # FROM = { add_papal_influence = 5 }
3645
+ # }
3646
+ #}
3647
+ FROM = {
3648
+ add_country_modifier = {
3649
+ name = recently_force_converted_protagonist_timer
3650
+ duration = 5475
3651
+ hidden = yes
3652
+ }
3653
+ if = {
3654
+ limit = { has_country_modifier = liv_protector_of_the_catholics }
3655
+ add_papal_influence = 25
3656
+ }
3657
+ change_variable = {
3658
+ which = num_of_forced_conversions
3659
+ value = 1
3660
+ }
3661
+ if = {
3662
+ limit = { has_government_attribute = gain_monarch_power_from_force_converting }
3663
+ export_to_variable = {
3664
+ variable_name = root_development
3665
+ value = total_development
3666
+ who = ROOT
3667
+ }
3668
+ while = {
3669
+ limit = {
3670
+ check_variable = {
3671
+ which = root_development
3672
+ value = 1
3673
+ }
3674
+ }
3675
+ subtract_variable = {
3676
+ which = root_development
3677
+ value = 1
3678
+ }
3679
+ add_adm_power = 1
3680
+ add_dip_power = 1
3681
+ add_mil_power = 1
3682
+ }
3683
+ }
3684
+ if = {
3685
+ limit = { has_government_attribute = gain_devotion_from_force_converting }
3686
+ export_to_variable = {
3687
+ variable_name = root_development
3688
+ value = total_development
3689
+ who = ROOT
3690
+ }
3691
+ while = {
3692
+ limit = {
3693
+ check_variable = {
3694
+ which = root_development
3695
+ value = 1
3696
+ }
3697
+ }
3698
+ subtract_variable = {
3699
+ which = root_development
3700
+ value = 1
3701
+ }
3702
+ add_devotion = 0.05
3703
+ }
3704
+ }
3705
+ if = {
3706
+ limit = { has_government_mechanic = the_three_royal_fires_mechanic NOT = { has_country_flag = removed_asha_vahishta_loss_from_force_conversion } }
3707
+ export_to_variable = {
3708
+ variable_name = root_development
3709
+ value = total_development
3710
+ who = ROOT
3711
+ }
3712
+ while = {
3713
+ limit = {
3714
+ check_variable = {
3715
+ which = root_development
3716
+ value = 1
3717
+ }
3718
+ }
3719
+ subtract_variable = {
3720
+ which = root_development
3721
+ value = 1
3722
+ }
3723
+ change_asha_vahishta = { value = -1 }
3724
+ }
3725
+ }
3726
+ if = {
3727
+ limit = { has_government_attribute = theocratic_monarchy_mechanic }
3728
+ change_statists_vs_orangists = -0.05
3729
+ }
3730
+ }
3731
+ }
3732
+
3733
+ on_general_recruited_effect = {
3734
+ if = {
3735
+ limit = { has_country_modifier = pol_trigger_for_army_professionalism_modifier }
3736
+ add_army_professionalism = 0.0125
3737
+ }
3738
+ else = { add_army_professionalism = 0.01 }
3739
+ if = {
3740
+ limit = { has_government_attribute = recruiting_generals_increases_nobles_loyalty }
3741
+ if = {
3742
+ limit = {
3743
+ has_estate = estate_nobles
3744
+ }
3745
+ add_estate_loyalty = {
3746
+ estate = estate_nobles
3747
+ loyalty = 2
3748
+ }
3749
+ }
3750
+ if = {
3751
+ limit = {
3752
+ has_estate = estate_maratha
3753
+ }
3754
+ add_estate_loyalty = {
3755
+ estate = estate_maratha
3756
+ loyalty = 2
3757
+ }
3758
+ }
3759
+ if = {
3760
+ limit = {
3761
+ has_estate = estate_rajput
3762
+ }
3763
+ add_estate_loyalty = {
3764
+ estate = estate_rajput
3765
+ loyalty = 2
3766
+ }
3767
+ }
3768
+ }
3769
+ if = {
3770
+ limit = { has_government_attribute = recruiting_generals_increases_church_loyalty }
3771
+ if = {
3772
+ limit = {
3773
+ has_estate = estate_church
3774
+ }
3775
+ add_estate_loyalty = {
3776
+ estate = estate_church
3777
+ loyalty = 2
3778
+ }
3779
+ }
3780
+ if = {
3781
+ limit = {
3782
+ has_estate = estate_brahmins
3783
+ }
3784
+ add_estate_loyalty = {
3785
+ estate = estate_brahmins
3786
+ loyalty = 2
3787
+ }
3788
+ }
3789
+ }
3790
+ if = {
3791
+ limit = { has_country_modifier = fra_french_papal_military_cooperation_modifier }
3792
+ add_army_professionalism = 0.015
3793
+ }
3794
+ }
3795
+
3796
+ on_sale_of_titles_effect = {
3797
+ hidden_effect = {
3798
+ change_variable = {
3799
+ which = sale_of_titles_counter
3800
+ value = 1
3801
+ }
3802
+ }
3803
+ }
3804
+ on_summon_the_diet_effect = {
3805
+ hidden_effect = {
3806
+ change_variable = {
3807
+ which = summon_the_diet_counter
3808
+ value = 1
3809
+ }
3810
+ }
3811
+ }
3812
+ on_seize_land_effect = {
3813
+ hidden_effect = {
3814
+ change_variable = {
3815
+ which = seize_land_counter
3816
+ value = 1
3817
+ }
3818
+ if = {
3819
+ limit = {
3820
+ has_government_attribute = has_appanages
3821
+ }
3822
+ change_variable = {
3823
+ which = can_annex_appanages_points
3824
+ value = 1
3825
+ }
3826
+ }
3827
+ }
3828
+ }
3829
+ on_heir_disinherited_or_death_effect = {
3830
+ if = {
3831
+ limit = { has_country_flag = heir_dip_education }
3832
+ clr_country_flag = heir_dip_education
3833
+ }
3834
+ if = {
3835
+ limit = { has_country_flag = heir_mil_education }
3836
+ clr_country_flag = heir_mil_education
3837
+ }
3838
+ if = {
3839
+ limit = { has_country_flag = heir_adm_education }
3840
+ clr_country_flag = heir_adm_education
3841
+ }
3842
+ if = {
3843
+ limit = { has_ruler_flag = well_advised_tutored_heir }
3844
+ clr_ruler_flag = well_advised_tutored_heir
3845
+ }
3846
+ if = {
3847
+ limit = { has_ruler_flag = heir_went_on_grand_tour }
3848
+ clr_ruler_flag = heir_went_on_grand_tour
3849
+ }
3850
+ if = {
3851
+ limit = { has_country_flag = albrecht_achilles_flag }
3852
+ clr_country_flag = albrecht_achilles_flag #Death of original Albrecht Achilles
3853
+ }
3854
+ if = {
3855
+ limit = { has_ruler_flag = sancaga_cikma }
3856
+ clr_ruler_flag = sancaga_cikma
3857
+ every_owned_province = {
3858
+ limit = {
3859
+ has_province_modifier = heir_in_training
3860
+ }
3861
+ remove_province_modifier = heir_in_training
3862
+ }
3863
+ }
3864
+ if = {
3865
+ limit = { has_ruler_flag = returned_from_sancaga_sikma_province }
3866
+ clr_ruler_flag = returned_from_sancaga_sikma_province
3867
+ }
3868
+ if = {
3869
+ limit = { primary_culture = maori }
3870
+ country_event = { id = polynesian.26 }
3871
+ }
3872
+ if = {
3873
+ limit = { has_any_heir_cult_active = yes }
3874
+ remove_heir_cult = yes
3875
+ }
3876
+ }
3877
+
3878
+ on_defender_of_faith_loss_effect = {
3879
+ clr_country_flag = claimed_defender_of_faith_flag
3880
+ remove_country_modifier = liv_the_livonian_defender
3881
+ remove_country_modifier = gov_improved_defender_of_faith_mod
3882
+ remove_country_modifier = pol_shield_against_catholicism_modifier
3883
+ remove_country_modifier = per_persian_defender_of_faith
3884
+ }
3885
+ on_defender_of_faith_claim_effect = {
3886
+ set_country_flag = claimed_defender_of_faith_flag
3887
+ if = {
3888
+ limit = {
3889
+ religion = catholic
3890
+ has_country_flag = liv_the_livonian_defender_flag
3891
+ NOT = { has_country_modifier = liv_the_livonian_defender }
3892
+ }
3893
+ add_country_modifier = {
3894
+ name = liv_the_livonian_defender
3895
+ duration = -1
3896
+ desc = liv_the_livonian_defender_tt
3897
+ }
3898
+ }
3899
+ if = {
3900
+ limit = {
3901
+ has_government_attribute = improved_defender_of_faith
3902
+ }
3903
+ add_country_modifier = {
3904
+ name = gov_improved_defender_of_faith_mod
3905
+ duration = -1
3906
+ }
3907
+ }
3908
+ if = {
3909
+ limit = {
3910
+ has_country_flag = per_gain_persian_dotf_buff
3911
+ }
3912
+ add_country_modifier = {
3913
+ name = per_persian_defender_of_faith
3914
+ duration = -1
3915
+ desc = UNTIL_NO_MORE_DOTF
3916
+ }
3917
+ }
3918
+ }
3919
+
3920
+ on_advisor_removed_effct_adm = {}
3921
+ on_advisor_removed_effct_dip = {}
3922
+ on_advisor_removed_effct_mil = {}
3923
+ on_advisor_removed_effct = {
3924
+ on_advisor_removed_effct_$type$ = yes
3925
+ remove_grand_vizier_modifiers = yes
3926
+ remove_country_modifier = zoroastrian_prophet_in_the_court
3927
+ }
3928
+
3929
+
3930
+ on_built_tax_building_effect = {
3931
+ if = {
3932
+ limit = {
3933
+ owner = { has_country_flag = can_place_center_of_reformation }
3934
+ is_reformation_center = no
3935
+ expelling_minorities = no
3936
+ NOT = {
3937
+ any_neighbor_province = {
3938
+ is_reformation_center = yes
3939
+ }
3940
+ }
3941
+ NOT = {
3942
+ any_province = {
3943
+ area = PREV
3944
+ is_reformation_center = yes
3945
+ religion = zoroastrian
3946
+ }
3947
+ }
3948
+ OR = {
3949
+ has_owner_religion = yes
3950
+ NOT = { has_active_triggered_province_modifier = religious_center }
3951
+ }
3952
+ }
3953
+ if = {
3954
+ limit = { development = 31 }
3955
+ custom_tooltip = TOO_MUCH_DEV_FOR_CENTER_OF_CONVERSION_TT
3956
+ }
3957
+ else = {
3958
+ hidden_effect = {
3959
+ owner = {
3960
+ clr_country_flag = can_place_center_of_reformation
3961
+ }
3962
+ 1 = {
3963
+ change_variable = {
3964
+ which = zoroastrian_reform_center_counter
3965
+ value = 1
3966
+ }
3967
+ }
3968
+ }
3969
+ change_religion = zoroastrian
3970
+ add_reform_center = zoroastrian
3971
+ }
3972
+ }
3973
+ }
3974
+
3975
+ on_capital_moved_effect = {
3976
+ }
3977
+
3978
+ on_government_change_effect = {
3979
+ clr_country_flag = pirate_mutineer_council
3980
+ clr_country_flag = caretaker_revolutionary_government
3981
+ if = {
3982
+ limit = {
3983
+ NOT = { government = monarchy }
3984
+ any_owned_province = { has_province_modifier = domain_of_spouses_family }
3985
+ }
3986
+ random_owned_province = {
3987
+ limit = { has_province_modifier = domain_of_spouses_family }
3988
+ remove_province_modifier = domain_of_spouses_family
3989
+ }
3990
+ }
3991
+ if = {
3992
+ limit = {
3993
+ NOT = { government = monarchy }
3994
+ any_owned_province = { has_province_modifier = home_of_consort }
3995
+ }
3996
+ random_owned_province = {
3997
+ limit = { has_province_modifier = home_of_consort }
3998
+ remove_province_modifier = home_of_consort
3999
+ }
4000
+ }
4001
+ if = {
4002
+ limit = {
4003
+ OR = {
4004
+ tag = ENG
4005
+ tag = GBR
4006
+ }
4007
+ any_owned_province = { has_province_modifier = rotten_borough }
4008
+ }
4009
+ every_owned_province = {
4010
+ limit = { has_province_modifier = rotten_borough }
4011
+ remove_province_modifier = rotten_borough
4012
+ }
4013
+ }
4014
+ if = {
4015
+ limit = { has_country_modifier = the_reign_of_terror }
4016
+ remove_country_modifier = the_reign_of_terror
4017
+ }
4018
+ if = {
4019
+ limit = {
4020
+ has_global_flag = great_peasants_war_flag
4021
+ is_part_of_hre = yes
4022
+ has_government_attribute = is_peasants_republic
4023
+ }
4024
+ 1 = {
4025
+ change_variable = {
4026
+ which = GPW_counting_variable
4027
+ value = -3
4028
+ }
4029
+ }
4030
+ }
4031
+ if = {
4032
+ limit = {
4033
+ num_of_subjects = 1
4034
+ any_subject_country = {
4035
+ is_subject_of_type = cultural_sphere_of_influence_subject
4036
+ }
4037
+ }
4038
+ country_event = { id = persian_influence_events.3000 }
4039
+ }
4040
+ }
4041
+
4042
+ on_non_estate_disaster_end = {
4043
+ hidden_effect = {
4044
+ change_variable = {
4045
+ which = total_disasters_completed_counter
4046
+ value = 1
4047
+ }
4048
+ }
4049
+ }
4050
+
4051
+ on_startup_effect = {
4052
+ if = {
4053
+ limit = {
4054
+ NOT = { has_country_flag = new_flavour_bav_13_has_been_triggered }
4055
+ OR = {
4056
+ tag = UBV
4057
+ tag = LBV
4058
+ tag = ING
4059
+ }
4060
+ }
4061
+ set_country_flag = new_flavour_bav_13_has_been_triggered
4062
+ country_event = { id = new_flavour_bav.13 days = 90 } #better not to allow almost instant DOWs
4063
+ }
4064
+ if = {
4065
+ limit = {
4066
+ OR = {
4067
+ has_country_modifier = rise_of_the_ottomans
4068
+ has_country_modifier = zenith_of_the_ottomans
4069
+ has_country_modifier = twilight_of_the_ottomans
4070
+ has_country_modifier = decline_of_the_ottomans
4071
+ }
4072
+ }
4073
+ remove_country_modifier = rise_of_the_ottomans
4074
+ remove_country_modifier = zenith_of_the_ottomans
4075
+ remove_country_modifier = twilight_of_the_ottomans
4076
+ remove_country_modifier = decline_of_the_ottomans
4077
+ }
4078
+ if = {
4079
+ limit = {
4080
+ has_government_mechanic = ottoman_decadence_mechanic
4081
+ current_age = age_of_discovery
4082
+ }
4083
+ add_country_modifier = {
4084
+ name = rise_of_the_ottomans
4085
+ duration = -1
4086
+ desc = until_end_of_age_desc
4087
+ }
4088
+ }
4089
+ if = {
4090
+ limit = {
4091
+ has_government_mechanic = ottoman_decadence_mechanic
4092
+ current_age = age_of_reformation
4093
+ }
4094
+ add_country_modifier = {
4095
+ name = zenith_of_the_ottomans
4096
+ duration = -1
4097
+ desc = until_end_of_age_desc
4098
+ }
4099
+ }
4100
+ if = {
4101
+ limit = {
4102
+ has_government_mechanic = ottoman_decadence_mechanic
4103
+ current_age = age_of_absolutism
4104
+ }
4105
+ add_country_modifier = {
4106
+ name = twilight_of_the_ottomans
4107
+ duration = -1
4108
+ desc = until_end_of_age_desc
4109
+ }
4110
+ }
4111
+ if = {
4112
+ limit = {
4113
+ has_government_mechanic = ottoman_decadence_mechanic
4114
+ current_age = age_of_revolutions
4115
+ }
4116
+ add_country_modifier = {
4117
+ name = decline_of_the_ottomans
4118
+ duration = -1
4119
+ desc = until_end_of_age_desc
4120
+ }
4121
+ }
4122
+ }
4123
+
4124
+ on_startup_dlc_cleanup_effect = {
4125
+ if = {
4126
+ limit = {
4127
+ has_dlc = "Cradle of Civilization"
4128
+ has_country_modifier = tur_janissary
4129
+ }
4130
+ remove_country_modifier = tur_janissary
4131
+ }
4132
+ }
4133
+
4134
+ on_dependency_gained_effect = {
4135
+ convert_special_subject_to_vassal = {
4136
+ overlord = ROOT
4137
+ subject = FROM
4138
+ }
4139
+ if = {
4140
+ limit = {
4141
+ FROM = {
4142
+ has_government_attribute = has_dutch_election
4143
+ }
4144
+ }
4145
+ ROOT = {
4146
+ country_event = {
4147
+ id = dutch_republic.31
4148
+ }# States General falls under a PU
4149
+ }
4150
+ }
4151
+ if = {
4152
+ limit = {
4153
+ FROM = {
4154
+ tag = AVE
4155
+ government_rank = 1
4156
+ }
4157
+ }
4158
+ FROM = {
4159
+ country_event = {
4160
+ id = flavor_gbr.20
4161
+ }
4162
+ }
4163
+ }
4164
+ }
4165
+
4166
+ on_dependency_lost_effect = {
4167
+ if = {
4168
+ limit = {
4169
+ has_country_modifier = mng_tibetan_horses_monopoly_modifier
4170
+ FROM = { owns = 667 }
4171
+
4172
+ }
4173
+ remove_country_modifier = mng_tibetan_horses_monopoly_modifier
4174
+ }
4175
+ if = {
4176
+ limit = {
4177
+ has_country_modifier = tur_tatar_vanguard_modifier
4178
+ FROM = { tag = CRI NOT = { is_subject_of = ROOT } }
4179
+ }
4180
+ remove_country_modifier = tur_tatar_vanguard_modifier
4181
+ }
4182
+ if = {
4183
+ limit = {
4184
+ has_country_modifier = rus_grand_duke_of_finland
4185
+ FROM = { tag = FIN }
4186
+ }
4187
+ remove_country_modifier = rus_grand_duke_of_finland
4188
+ }
4189
+ FROM = {
4190
+ if = {
4191
+ limit = { has_country_modifier = revoked_war_rights }
4192
+ remove_country_modifier = revoked_war_rights
4193
+ }
4194
+ if = {
4195
+ limit = { has_country_modifier = grain_trade_imports_modifier }
4196
+ remove_country_modifier = grain_trade_imports_modifier
4197
+ }
4198
+ }
4199
+ }
4200
+
4201
+ on_monarch_death_effect = {
4202
+ if = {
4203
+ limit = {
4204
+ tag = ANS
4205
+ BRA = {
4206
+ has_country_flag = albrecht_achilles_flag
4207
+ }
4208
+ }
4209
+ BRA = {
4210
+ clr_country_flag = albrecht_achilles_flag #Just to be sure
4211
+ kill_heir = {} #If Albrecht Achilles dies in Ansbach he will also be dead in Brandenburg, will appear as normal death of heir to BRA.
4212
+ }
4213
+ }
4214
+ if = {
4215
+ limit = { has_country_modifier = sought_after_bachelor }
4216
+ remove_country_modifier = sought_after_bachelor
4217
+ }
4218
+ if = {
4219
+ limit = {
4220
+ tag = SAX
4221
+ has_country_flag = sax_thuringen_split_to_happen
4222
+ OR = {
4223
+ NOT = { dynasty = "von Wettin" }
4224
+ NOT = { senior_union_with = THU }
4225
+ has_regency = yes
4226
+ }
4227
+ }
4228
+ clr_country_flag = sax_thuringen_split_to_happen
4229
+ }
4230
+ if = {
4231
+ limit = { tag = SAM }
4232
+ country_event = { id = polynesian.35 }
4233
+ }
4234
+ if = {
4235
+ limit = { tag = TOG }
4236
+ country_event = { id = polynesian.36 }
4237
+ }
4238
+ if = { # Ascension of Trailokanat
4239
+ limit = { tag = AYU }
4240
+ country_event = { id = flavor_suk.1 }
4241
+ }
4242
+ if = {
4243
+ limit = { tag = GOT }
4244
+ country_event = { id = flavor_got.37 }
4245
+ }
4246
+ if = {
4247
+ limit = { has_government_attribute = no_stability_loss_on_monarch_death }
4248
+ add_stability = 1
4249
+ }
4250
+
4251
+ if = {
4252
+ limit = {
4253
+ is_subject_of_type = pronoia_subject_type
4254
+ NOT = { liberty_desire = 50 }
4255
+ }
4256
+ overlord = {
4257
+ inherit = ROOT
4258
+ if = {
4259
+ limit = {
4260
+ has_country_flag = BYZ_inheriting_pronoia_crownland_flag
4261
+ OR = {
4262
+ NOT = { has_country_flag = BYZ_crownland_from_pronoia_proc }
4263
+ had_country_flag = {
4264
+ flag = BYZ_crownland_from_pronoia_proc
4265
+ days = 1825
4266
+ }
4267
+ }
4268
+ }
4269
+ clr_country_flag = BYZ_crownland_from_pronoia_proc
4270
+ set_country_flag = BYZ_crownland_from_pronoia_proc
4271
+ change_estate_land_share = {
4272
+ estate = all
4273
+ share = -1
4274
+ }
4275
+ }
4276
+ }
4277
+ }
4278
+ if = {
4279
+ limit = {
4280
+ has_government_attribute = civil_war_on_every_new_ruler
4281
+ }
4282
+ country_event = { id = 611 }
4283
+ }
4284
+
4285
+ }
4286
+
4287
+ on_conquest_effect = {
4288
+ remove_named_unrest = estate_land_seized
4289
+ clr_province_flag = has_estate_unrest_flag
4290
+ if = {
4291
+ limit = {
4292
+ is_part_of_hre = no
4293
+ owner = {
4294
+ has_country_flag = pru_dom_hre_flag
4295
+ alliance_with = emperor
4296
+ }
4297
+ }
4298
+ owner = {
4299
+ add_trust = {
4300
+ who = emperor
4301
+ value = 3
4302
+ mutual = yes
4303
+ }
4304
+ }
4305
+ }
4306
+ else_if = {
4307
+ limit = {
4308
+ is_part_of_hre = no
4309
+ owner = {
4310
+ has_country_flag = pru_dom_hre_flag
4311
+ NOT = { alliance_with = emperor }
4312
+ is_emperor = no
4313
+ }
4314
+ }
4315
+ owner = {
4316
+ add_power_projection = {
4317
+ type = mission_rewards_power_projection
4318
+ amount = 1
4319
+ }
4320
+ }
4321
+ }
4322
+ else_if = {
4323
+ limit = {
4324
+ is_part_of_hre = no
4325
+ owner = { is_emperor = yes }
4326
+ development = 25
4327
+ }
4328
+ emperor = {
4329
+ add_imperial_influence = 1
4330
+ }
4331
+ }
4332
+ if = {
4333
+ limit = {
4334
+ owner = {
4335
+ mission_completed = feo_gothic_invasion
4336
+ }
4337
+ OR = {
4338
+ region = north_german_region
4339
+ region = south_german_region
4340
+ }
4341
+ }
4342
+ add_province_modifier = {
4343
+ name = feo_return_to_gothic_ways
4344
+ duration = -1
4345
+ }
4346
+ }
4347
+ if = {
4348
+ limit = {
4349
+ owner = {
4350
+ mission_completed = feo_subdue_the_hordes
4351
+ }
4352
+ OR = {
4353
+ region = ural_region
4354
+ region = central_asia_region
4355
+ }
4356
+ }
4357
+ add_province_modifier = {
4358
+ name = feo_steppe_construction_efforts
4359
+ duration = -1
4360
+ }
4361
+ }
4362
+ if = {
4363
+ limit = {
4364
+ owner = {
4365
+ mission_completed = feo_gothic_invasion
4366
+ }
4367
+ }
4368
+ if = {
4369
+ limit = {
4370
+ 134 = {
4371
+ country_or_non_sovereign_subject_holds = ROOT
4372
+ }
4373
+ }
4374
+ add_country_modifier = {
4375
+ name = feo_vienna
4376
+ duration = -1
4377
+ hidden = yes
4378
+ }
4379
+ }
4380
+ if = {
4381
+ limit = {
4382
+ 266 = {
4383
+ country_or_non_sovereign_subject_holds = ROOT
4384
+ }
4385
+ }
4386
+ add_country_modifier = {
4387
+ name = feo_prague
4388
+ duration = -1
4389
+ hidden = yes
4390
+ }
4391
+ }
4392
+ if = {
4393
+ limit = {
4394
+ 45 = {
4395
+ country_or_non_sovereign_subject_holds = ROOT
4396
+ }
4397
+ }
4398
+ add_country_modifier = {
4399
+ name = feo_lubeck
4400
+ duration = -1
4401
+ hidden = yes
4402
+ }
4403
+ }
4404
+ if = {
4405
+ limit = {
4406
+ 1878 = {
4407
+ country_or_non_sovereign_subject_holds = ROOT
4408
+ }
4409
+ }
4410
+ add_country_modifier = {
4411
+ name = feo_aachen
4412
+ duration = -1
4413
+ hidden = yes
4414
+ }
4415
+ }
4416
+ if = {
4417
+ limit = {
4418
+ 85 = {
4419
+ country_or_non_sovereign_subject_holds = ROOT
4420
+ }
4421
+ }
4422
+ add_country_modifier = {
4423
+ name = feo_cologne
4424
+ duration = -1
4425
+ hidden = yes
4426
+ }
4427
+ }
4428
+ }
4429
+ }
common/scripted_effects/01_scripted_effects_for_rulers_heirs_consorts.txt CHANGED
@@ -18,13 +18,8 @@ divorce_consort_effect = {
18
18
  #Foreign consort family expresses anger
19
19
  if = {
20
20
  limit = {
21
- OR = {
22
- NOT = { religion = catholic }
23
- AND = {
24
- religion = catholic
25
- NOT = { exists = PAP }
26
- }
27
- }
21
+ religion = catholic
22
+ NOT = { exists = PAP }
28
23
  has_foreign_consort = yes
29
24
  }
30
25
 
@@ -211,4 +206,73 @@ increase_heir_mil_effect = {
211
206
  }
212
207
  }
213
208
 
214
- #Rulers
209
+ #Rulers
210
+
211
+ change_ruler_stat = {
212
+ tooltip = {
213
+ change_$type$ = $amount$
214
+ }
215
+ custom_tooltip = ADD_STAT_OR_POWER_$type$
216
+ hidden_effect = {
217
+ set_variable = {
218
+ which = ForLoopCounter
219
+ value = $amount$
220
+ }
221
+ while = {
222
+ limit = {
223
+ check_variable = {
224
+ which = ForLoopCounter
225
+ value = 1
226
+ }
227
+ }
228
+ if = {
229
+ limit = {
230
+ NOT = { $type$ = 6 }
231
+ }
232
+ change_$type$ = 1
233
+ }
234
+ else = {
235
+ add_$type$_power = 100
236
+ }
237
+ subtract_variable = {
238
+ which = ForLoopCounter
239
+ value = 1
240
+ }
241
+ }
242
+ }
243
+ }
244
+
245
+ #Heir
246
+ change_heir_stat = {
247
+ tooltip = {
248
+ change_heir_$type$ = $amount$
249
+ }
250
+ custom_tooltip = ADD_STAT_OR_POWER_$type$
251
+ hidden_effect = {
252
+ set_variable = {
253
+ which = ForLoopCounter
254
+ value = $amount$
255
+ }
256
+ while = {
257
+ limit = {
258
+ check_variable = {
259
+ which = ForLoopCounter
260
+ value = 1
261
+ }
262
+ }
263
+ if = {
264
+ limit = {
265
+ NOT = { heir_$type$ = 6 }
266
+ }
267
+ change_heir_$type$ = 1
268
+ }
269
+ else = {
270
+ add_$type$_power = 100
271
+ }
272
+ subtract_variable = {
273
+ which = ForLoopCounter
274
+ value = 1
275
+ }
276
+ }
277
+ }
278
+ }
common/scripted_effects/01_scripted_effects_for_simple_bonuses_penalties.txt CHANGED
@@ -26,6 +26,37 @@ reduce_stability_or_adm_power = {
26
26
  else = { add_adm_power = -50 }
27
27
  }
28
28
 
29
+ add_stability_or_adm_power_per_stab = {
30
+ tooltip = {
31
+ add_stability = $amount$
32
+ }
33
+ custom_tooltip = add_stability_or_adm_power_tt
34
+ hidden_effect = {
35
+ for = {
36
+ amount = $amount$
37
+ effect = "
38
+ if = {
39
+ limit = {
40
+ NOT = { stability = 3 }
41
+ }
42
+ add_stability = 1
43
+ }
44
+ else = {
45
+ add_adm_power = 50
46
+ }
47
+ "
48
+ }
49
+ }
50
+ }
51
+
52
+ add_permanent_power_projection = {
53
+ add_power_projection = {
54
+ type = $type$
55
+ amount = $amount$
56
+ }
57
+ custom_tooltip = PERMANENT_POWER_PROJECTION_TT
58
+ }
59
+
29
60
 
30
61
  #Legitimacy
31
62
  #Country Scope
@@ -240,4 +271,425 @@ reduce_curia_treasury_huge_effect = {
240
271
  }
241
272
  add_curia_treasury = -1000
242
273
  }
274
+ }
275
+
276
+ add_manufactory = {
277
+ if = {
278
+ limit = {
279
+ trade_goods = coal
280
+ has_dlc = "Rule Britannia"
281
+ }
282
+ add_building = furnace
283
+ }
284
+ if = {
285
+ limit = {
286
+ has_wharf_trade_goods = yes
287
+ }
288
+ add_building = wharf
289
+ }
290
+ if = {
291
+ limit = {
292
+ has_weapons_trade_goods = yes
293
+ }
294
+ add_building = weapons
295
+ }
296
+ if = {
297
+ limit = {
298
+ has_textile_trade_goods = yes
299
+ }
300
+ add_building = textile
301
+ }
302
+ if = {
303
+ limit = {
304
+ has_plantation_trade_goods = yes
305
+ }
306
+ add_building = plantations
307
+ }
308
+ if = {
309
+ limit = {
310
+ has_trade_company_trade_goods = yes
311
+ }
312
+ add_building = tradecompany
313
+ }
314
+ if = {
315
+ limit = {
316
+ has_farm_trade_goods = yes
317
+ }
318
+ add_building = farm_estate
319
+ }
320
+ if = {
321
+ limit = {
322
+ has_mills_trade_goods = yes
323
+ }
324
+ add_building = mills
325
+ }
326
+ }
327
+
328
+ add_permanent_claim_province = {
329
+ if = {
330
+ limit = {
331
+ NOT = { is_core = $province$ }
332
+ NOT = { is_permanent_claim = $province$ }
333
+ }
334
+ add_permanent_claim = $province$
335
+ }
336
+ }
337
+
338
+ add_claim_province = {
339
+ if = {
340
+ limit = {
341
+ NOT = { is_core = $province$ }
342
+ NOT = { is_permanent_claim = $province$ }
343
+ }
344
+ add_claim = $province$
345
+ }
346
+ }
347
+
348
+ add_permanent_claim_multi_provinces = {
349
+ $target$ = {
350
+ limit = {
351
+ NOT = { is_core = PREV }
352
+ NOT = { is_permanent_claim = PREV }
353
+ }
354
+ add_permanent_claim = PREV
355
+ }
356
+ }
357
+
358
+ add_claim_multi_provinces = {
359
+ $target$ = {
360
+ limit = {
361
+ NOT = { is_core = PREV }
362
+ NOT = { is_permanent_claim = PREV }
363
+ }
364
+ add_claim = PREV
365
+ }
366
+ }
367
+
368
+ add_russian_claim = {
369
+ if = {
370
+ limit = { ROOT = { has_country_modifier = rus_expanded_administrative_offices } }
371
+ add_claim = ROOT
372
+ }
373
+ else = {
374
+ add_permanent_claim = ROOT
375
+ }
376
+ }
377
+
378
+ add_russian_claim_province = {
379
+ if = {
380
+ limit = {
381
+ NOT = { is_core = $province$ }
382
+ NOT = { is_permanent_claim = $province$ }
383
+ }
384
+ if = {
385
+ limit = { has_country_modifier = rus_expanded_administrative_offices }
386
+ add_claim = $province$
387
+ }
388
+ else = {
389
+ add_permanent_claim = $province$
390
+ }
391
+ }
392
+ }
393
+
394
+ add_prestige_or_monarch_power = {
395
+ tooltip = {
396
+ add_prestige = $amount$
397
+ }
398
+ custom_tooltip = ME_ADD_PRESTIGE_OR_MONARCHPOWER
399
+ hidden_effect = {
400
+ for = {
401
+ amount = $amount$
402
+ effect = "
403
+ if = {
404
+ limit = {
405
+ NOT = { prestige = 100 }
406
+ }
407
+ add_prestige = 1
408
+ }
409
+ else = {
410
+ add_adm_power = 1
411
+ add_dip_power = 1
412
+ add_mil_power = 1
413
+ }
414
+ "
415
+ }
416
+ }
417
+ }
418
+
419
+ add_mercantilism_or_monarch_power = {
420
+ tooltip = {
421
+ add_mercantilism = $amount$
422
+ }
423
+ custom_tooltip = ADD_MERCANTILISM_OR_MONARCHPOWER
424
+ hidden_effect = {
425
+ for = {
426
+ amount = $amount$
427
+ effect = "
428
+ if = {
429
+ limit = {
430
+ NOT = { mercantilism = 100 }
431
+ }
432
+ add_mercantilism = 1
433
+ }
434
+ else = {
435
+ add_adm_power = 50
436
+ add_dip_power = 50
437
+ add_mil_power = 50
438
+ }
439
+ "
440
+ }
441
+ }
442
+ }
443
+
444
+ add_innovativeness_or_monarch_power = {
445
+ if = {
446
+ limit = { has_dlc = "Rule Britannia" }
447
+ tooltip = {
448
+ change_innovativeness = $amount$
449
+ }
450
+ custom_tooltip = ADD_INNOVATIVENESS_OR_MONARCHPOWER
451
+ hidden_effect = {
452
+ for = {
453
+ amount = $amount$
454
+ effect = "
455
+ if = {
456
+ limit = {
457
+ NOT = { innovativeness = 100 }
458
+ }
459
+ change_innovativeness = 1
460
+ }
461
+ else = {
462
+ add_adm_power = 10
463
+ add_dip_power = 10
464
+ add_mil_power = 10
465
+ }
466
+ "
467
+ }
468
+ }
469
+ }
470
+ else = {
471
+ [[adm]add_adm_power = $adm$]
472
+ [[dip]add_dip_power = $dip$]
473
+ [[mil]add_mil_power = $mil$]
474
+ }
475
+ }
476
+
477
+ change_piety_effect = {
478
+ if = {
479
+ limit = { uses_piety = yes }
480
+ if = {
481
+ limit = { piety = 0 }
482
+ add_piety = $amount$
483
+ }
484
+ else = {
485
+ add_piety = -$amount$
486
+ }
487
+ }
488
+ }
489
+
490
+ change_karma_effect = {
491
+ if = {
492
+ limit = { uses_karma = yes }
493
+ if = {
494
+ limit = { karma = 33 }
495
+ add_karma = -$amount$
496
+ }
497
+ else_if = {
498
+ limit = {
499
+ NOT = { karma = 33 }
500
+ karma = 0
501
+ }
502
+ add_karma = -$second_amount$
503
+ }
504
+ else_if = {
505
+ limit = {
506
+ NOT = { karma = 0 }
507
+ karma = -33
508
+ }
509
+ add_karma = $second_amount$
510
+ }
511
+ else = {
512
+ add_karma = $amount$
513
+ }
514
+ }
515
+ }
516
+
517
+ ## adds army tradition until 100 is reached and then adds the rest as mil power
518
+ ### add_army_tradition_or_mil_power = { amount = <number> }
519
+ add_army_tradition_or_mil_power = {
520
+ [[amount]
521
+ tooltip = {
522
+ add_army_tradition = $amount$
523
+ }
524
+ custom_tooltip = ME_ADD_ARMY_TRADITION_OR_MIL_POWER
525
+ hidden_effect = {
526
+ for = {
527
+ amount = $amount$
528
+ effect = "
529
+ if = {
530
+ limit = {
531
+ NOT = { army_tradition = 99.9 }
532
+ }
533
+ add_army_tradition = 1
534
+ }
535
+ else = {
536
+ add_mil_power = 3
537
+ }
538
+ "
539
+ }
540
+ }
541
+ ]
542
+
543
+ [[value]
544
+ tooltip = {
545
+ add_army_tradition = $value$
546
+ }
547
+ custom_tooltip = ME_ADD_ARMY_TRADITION_OR_MIL_POWER
548
+ hidden_effect = {
549
+ for = {
550
+ amount = $value$
551
+ effect = "
552
+ if = {
553
+ limit = {
554
+ NOT = { army_tradition = 99.9 }
555
+ }
556
+ add_army_tradition = 1
557
+ }
558
+ else = {
559
+ add_mil_power = 3
560
+ }
561
+ "
562
+ }
563
+ }
564
+ ]
565
+ }
566
+
567
+ #Country effect
568
+ add_legitimacy_equivalent = {
569
+ add_legitimacy = $amount$
570
+ add_horde_unity = $amount$
571
+ add_devotion = $amount$
572
+ add_meritocracy = $amount$
573
+ add_republican_tradition = $republican_tradition$ #This one is special because of how much republics scale with it
574
+ }
575
+
576
+ add_legitimacy_or_mil_power = {
577
+ if = {
578
+ limit = { NOT = { government = native } }
579
+ if = {
580
+ limit = { uses_republican_tradition = yes }
581
+ tooltip = { add_republican_tradition = $republican_tradition$ }
582
+ custom_tooltip = add_republican_tradition_or_mil_power_tt
583
+ hidden_effect = {
584
+ for = {
585
+ amount = $republican_tradition$
586
+ effect = "if = { limit = { NOT = { republican_tradition = 100 } } add_republican_tradition = 1 } else = { add_mil_power = 33 }"
587
+ }
588
+ }
589
+ }
590
+ else = {
591
+ if = {
592
+ limit = { uses_horde_unity = yes }
593
+ tooltip = { add_horde_unity = $amount$ }
594
+ custom_tooltip = add_horde_unity_or_mil_power_tt
595
+ hidden_effect = {
596
+ for = {
597
+ amount = $amount$
598
+ effect = "if = { limit = { NOT = { horde_unity = 100 } } add_horde_unity = 1 } else = { add_mil_power = 10 }"
599
+ }
600
+ }
601
+ }
602
+ else_if = {
603
+ limit = { uses_meritocracy = yes }
604
+ tooltip = { add_meritocracy = $amount$ }
605
+ custom_tooltip = add_meritocracy_or_mil_power_tt
606
+ hidden_effect = {
607
+ for = {
608
+ amount = $amount$
609
+ effect = "if = { limit = { NOT = { meritocracy = 100 } } add_meritocracy = 1 } else = { add_mil_power = 10 }"
610
+ }
611
+ }
612
+ }
613
+ else_if = {
614
+ limit = { uses_devotion = yes }
615
+ tooltip = { add_devotion = $amount$ }
616
+ custom_tooltip = add_devotion_or_mil_power_tt
617
+ hidden_effect = {
618
+ for = {
619
+ amount = $amount$
620
+ effect = "if = { limit = { NOT = { devotion = 100 } } add_devotion = 1 } else = { add_mil_power = 10 }"
621
+ }
622
+ }
623
+ }
624
+ else = {
625
+ tooltip = { add_legitimacy = $amount$ }
626
+ custom_tooltip = add_legitimacy_or_mil_power_tt
627
+ hidden_effect = {
628
+ for = {
629
+ amount = $amount$
630
+ effect = "if = { limit = { NOT = { legitimacy = 100 } } add_legitimacy = 1 } else = { add_mil_power = 10 }"
631
+ }
632
+ }
633
+ }
634
+ }
635
+ }
636
+ }
637
+
638
+ remove_comet_sighted_events = {
639
+ custom_tooltip = no_more_comet_sighted_event_tt
640
+ hidden_effect = { set_country_flag = no_more_comet_sighted_event }
641
+ }
642
+
643
+ remove_plague_events = {
644
+ custom_tooltip = emp_ven_plague_doctor_training_tt
645
+ hidden_effect = { set_country_flag = has_competent_doctors }
646
+ }
647
+
648
+ remove_sick_heir_events = {
649
+ custom_tooltip = remove_sick_heir_events_tt
650
+ hidden_effect = { set_country_flag = healthy_heir_diet }
651
+ }
652
+
653
+ remove_hunting_accident_events = {
654
+ custom_tooltip = remove_hunting_accident_events_tt
655
+ hidden_effect = { set_country_flag = no_more_hunting_for_heir }
656
+ }
657
+
658
+ reduce_hunting_accident_likelihood = {
659
+ custom_tooltip = reduce_hunting_accident_likelihood_tt
660
+ hidden_effect = { set_country_flag = selective_hunting_accident }
661
+ }
662
+
663
+ remove_base_development = {
664
+ add_base_$type$ = -$amount$
665
+ hidden_effect = {
666
+ if = {
667
+ limit = { NOT = { base_$type$ = 1 } }
668
+ set_base_$type$ = 1
669
+ }
670
+ }
671
+ }
672
+
673
+ greatly_reduce_propagate_religion_requirements = {
674
+ if = {
675
+ limit = {
676
+ has_dlc = "Cradle of Civilization"
677
+ }
678
+ custom_tooltip = rig_establish_religious_dominance_tt
679
+ }
680
+ hidden_effect = {
681
+ set_country_flag = 15_trade_power_for_propogate_religion
682
+ }
683
+ }
684
+
685
+ reduce_propagate_religion_requirements = {
686
+ if = {
687
+ limit = {
688
+ has_dlc = "Cradle of Civilization"
689
+ }
690
+ custom_tooltip = atj_propagate_religion_tt
691
+ }
692
+ hidden_effect = {
693
+ set_country_flag = 35_trade_power_for_propogate_religion
694
+ }
243
695
  }
common/scripted_effects/01_scripted_effects_natives.txt ADDED
@@ -0,0 +1,22 @@
1
+ # Scripted effects for Native Americans
2
+
3
+
4
+ add_permanent_claims_for_federation_nation = {
5
+ # ORIGINAL = Original Tag
6
+ # TAG = New Tag
7
+ capital_scope = {
8
+ region = {
9
+ limit = {
10
+ NOT = { owned_by = $ORIGINAL$ }
11
+ }
12
+ add_permanent_claim = $TAG$
13
+ }
14
+ }
15
+ }
16
+
17
+ swap_federation_idea_group = {
18
+ if = {
19
+ limit = { has_custom_ideas = no }
20
+ country_event = { id = ideagroups.1 } #Swap Ideas
21
+ }
22
+ }
common/scripted_effects/01_scripted_effects_parliament.txt ADDED
@@ -0,0 +1,336 @@
1
+ halves_parliament_bribe_costs = {
2
+ if = {
3
+ limit = {
4
+ OR = {
5
+ has_dlc = "Common Sense"
6
+ has_dlc = "Domination"
7
+ }
8
+ }
9
+ custom_tooltip = halves_parliament_bribe_costs_tt
10
+ }
11
+ set_country_flag = halved_parliament_bribe_costs
12
+ }
13
+
14
+ unlock_new_issues = {
15
+ if = {
16
+ limit = {
17
+ OR = {
18
+ has_dlc = "Common Sense"
19
+ has_dlc = "Domination"
20
+ }
21
+ }
22
+ custom_tooltip = pol_unlock_new_issues_tt
23
+ }
24
+ set_country_flag = pol_new_issues_tt
25
+ }
26
+
27
+ # Country scope
28
+ # Supports the following estates
29
+ ################################
30
+ # estate_brahmins
31
+ # estate_church
32
+ # estate_maratha
33
+ # estate_nobles
34
+ # estate_burghers
35
+ # estate_vaisyas
36
+ # estate_cossacks
37
+ # estate_nomadic_tribes
38
+ # estate_dhimmi
39
+ # estate_jains
40
+ # estate_rajput
41
+ # estate_janissaries
42
+ # estate_eunuchs
43
+ # estate_qizilbash
44
+ # estate_ghulams
45
+ issue_effect_scaling_with_estate_influence = {
46
+ if = {
47
+ limit = { has_government_attribute = english_parliament }
48
+ if = {
49
+ limit = {
50
+ has_estate = $estate$
51
+ }
52
+ custom_tooltip = issue_effects_with_$estate$_influence_tt
53
+ if = {
54
+ limit = {
55
+ NOT = {
56
+ estate_influence = {
57
+ influence = 20
58
+ estate = $estate$
59
+ }
60
+ }
61
+ }
62
+ [[effect1]$effect1$]
63
+ }
64
+ if = {
65
+ limit = {
66
+ estate_influence = {
67
+ influence = 20
68
+ estate = $estate$
69
+ }
70
+ NOT = {
71
+ estate_influence = {
72
+ influence = 40
73
+ estate = $estate$
74
+ }
75
+ }
76
+ }
77
+ $effect2$
78
+ }
79
+ if = {
80
+ limit = {
81
+ estate_influence = {
82
+ influence = 40
83
+ estate = $estate$
84
+ }
85
+ NOT = {
86
+ estate_influence = {
87
+ influence = 60
88
+ estate = $estate$
89
+ }
90
+ }
91
+ }
92
+ $effect3$
93
+ }
94
+ if = {
95
+ limit = {
96
+ estate_influence = {
97
+ influence = 60
98
+ estate = $estate$
99
+ }
100
+ NOT = {
101
+ estate_influence = {
102
+ influence = 80
103
+ estate = $estate$
104
+ }
105
+ }
106
+ }
107
+ $effect4$
108
+ }
109
+ if = {
110
+ limit = {
111
+ estate_influence = {
112
+ influence = 80
113
+ estate = $estate$
114
+ }
115
+ }
116
+ $effect5$
117
+ }
118
+ }
119
+ else = {
120
+ $fallback_effect$
121
+ }
122
+ }
123
+ else = {
124
+ $fallback_effect$
125
+ }
126
+ }
127
+
128
+ bribe_effect_scaling_with_estate_loyalty = {
129
+ if = {
130
+ limit = { has_government_attribute = english_parliament }
131
+ if = {
132
+ limit = {
133
+ has_estate = $estate$
134
+ }
135
+ custom_tooltip = bribe_effect_scales_with_$estate$_tt
136
+ if = {
137
+ limit = {
138
+ NOT = {
139
+ estate_loyalty = {
140
+ estate = $estate$
141
+ loyalty = 30
142
+ }
143
+ }
144
+ }
145
+ $effect_angry$
146
+ }
147
+ if = {
148
+ limit = {
149
+ estate_loyalty = {
150
+ estate = $estate$
151
+ loyalty = 30
152
+ }
153
+ NOT = {
154
+ estate_loyalty = {
155
+ estate = $estate$
156
+ loyalty = 60
157
+ }
158
+ }
159
+ }
160
+ $effect_neutral$
161
+ }
162
+ if = {
163
+ limit = {
164
+ estate_loyalty = {
165
+ loyalty = 60
166
+ estate = $estate$
167
+ }
168
+ }
169
+ $effect_happy$
170
+ }
171
+ }
172
+ else = {
173
+ $effect_neutral$
174
+ }
175
+ }
176
+ else = {
177
+ [[default_effect]$default_effect$]
178
+ }
179
+ }
180
+
181
+ increase_issue_passed_counter = {
182
+ hidden_effect = {
183
+ change_variable = {
184
+ which = issues_passed
185
+ value = 1
186
+ }
187
+ }
188
+ }
189
+
190
+ # Supports the following issues
191
+ ###############################
192
+ # Loc in style of: unlock_issue_$issue$_tt: "Unlock the ? Parliament Issue."
193
+ # acts_of_high_admiralty
194
+ # acts_of_maritime_courage
195
+ # acts_of_maritime_professionalism
196
+ # english_scottish_act_of_union
197
+ # british_ideas_laws
198
+ # angevin_ideas_laws
199
+ # english_ideas_laws
200
+ # cultural_unity_act
201
+ # colonial_venture_act
202
+ # crown_of_iberia_act
203
+ # act_of_exploration
204
+ # acts_of_impressment
205
+ # acts_of_taxation
206
+ # act_of_representation
207
+ # english_french_act_of_union
208
+ # crown_of_italy_act
209
+ # the_gold_act
210
+ # the_spice_act
211
+ # the_sugar_act
212
+ # establish_the_imperial_diet_act
213
+ # appointment_of_state_minister
214
+ # enact_mercantilism
215
+ # promote_free_trade
216
+ # military_reform_acts
217
+ unlock_issue = {
218
+ if = {
219
+ limit = { has_parliament = yes }
220
+ custom_tooltip = unlock_issue_$issue$_tt
221
+ }
222
+ else = {
223
+ add_adm_power = 25
224
+ add_dip_power = 25
225
+ add_mil_power = 25
226
+ }
227
+ hidden_effect = {
228
+ set_country_flag = unlocked_issue_$issue$
229
+ }
230
+ }
231
+
232
+ back_seats_of_bribe_type = {
233
+ every_owned_province = {
234
+ limit = {
235
+ has_seat_in_parliament = yes
236
+ OR = {
237
+ current_bribe = $bribe$
238
+ current_bribe = national_$bribe$
239
+ }
240
+ NOT = { province_id = FROM }
241
+ }
242
+ back_current_issue = yes
243
+ }
244
+ }
245
+
246
+ bribe_estate_effect = {
247
+ if = {
248
+ limit = {
249
+ has_expensive_debate = yes
250
+ NOT = { halved_parliament_bribes = yes }
251
+ }
252
+ add_estate_influence_modifier = {
253
+ estate = $estate$
254
+ desc = EST_VAL_SEAT_BRIBED
255
+ influence = 4
256
+ duration = 9125
257
+ add = yes
258
+ }
259
+ }
260
+ else_if = {
261
+ limit = {
262
+ OR = {
263
+ AND = {
264
+ has_expensive_debate = yes
265
+ halved_parliament_bribes = yes
266
+ }
267
+ AND = {
268
+ NOT = { has_expensive_debate = yes }
269
+ NOT = { halved_parliament_bribes = yes }
270
+ }
271
+ }
272
+ }
273
+ add_estate_influence_modifier = {
274
+ estate = $estate$
275
+ desc = EST_VAL_SEAT_BRIBED
276
+ influence = 2
277
+ duration = 9125
278
+ add = yes
279
+ }
280
+ }
281
+ else = {
282
+ add_estate_influence_modifier = {
283
+ estate = $estate$
284
+ desc = EST_VAL_SEAT_BRIBED
285
+ influence = 1
286
+ duration = 9125
287
+ add = yes
288
+ }
289
+ }
290
+ }
291
+
292
+ national_bribe_estate_effect = {
293
+ if = {
294
+ limit = {
295
+ has_expensive_debate = yes
296
+ NOT = { halved_parliament_bribes = yes }
297
+ }
298
+ add_estate_influence_modifier = {
299
+ estate = $estate$
300
+ desc = EST_VAL_SEAT_BRIBED
301
+ influence = 20
302
+ duration = 9125
303
+ add = yes
304
+ }
305
+ }
306
+ else_if = {
307
+ limit = {
308
+ OR = {
309
+ AND = {
310
+ has_expensive_debate = yes
311
+ halved_parliament_bribes = yes
312
+ }
313
+ AND = {
314
+ NOT = { has_expensive_debate = yes }
315
+ NOT = { halved_parliament_bribes = yes }
316
+ }
317
+ }
318
+ }
319
+ add_estate_influence_modifier = {
320
+ estate = $estate$
321
+ desc = EST_VAL_SEAT_BRIBED
322
+ influence = 10
323
+ duration = 9125
324
+ add = yes
325
+ }
326
+ }
327
+ else = {
328
+ add_estate_influence_modifier = {
329
+ estate = $estate$
330
+ desc = EST_VAL_SEAT_BRIBED
331
+ influence = 5
332
+ duration = 9125
333
+ add = yes
334
+ }
335
+ }
336
+ }
common/scripted_effects/02_scripted_effects_mission_rewards.txt ADDED
@@ -0,0 +1,2805 @@
1
+ # This file contains all effects which are are needed for dynamic effects, but have more than 512 characters in total.
2
+ # It also has the dynamic effect itself too.
3
+ #Use insight_tooltip = INSIGHT_JUST_TOOLTIP if you don't want to have anything specific
4
+ country_event_with_insight = {
5
+ country_event = {
6
+ id = $id$
7
+ [[days] days = $days$]
8
+ [[random] random = $random$]
9
+ [[tooltip] tooltip = $tooltip$]
10
+ }
11
+ custom_tooltip = EVENT_INSIGHT_INTRO
12
+ custom_tooltip = $insight_tooltip$
13
+ [[effect_tooltip] tooltip = { $effect_tooltip$ }]
14
+ }
15
+
16
+ # "Simple" as in "Do not put too many characters in the input argument or else it will not work"
17
+ # This serves as both an useful effect for small dynamic mission rewards
18
+ # And as a reminder how the template for the dynamic mission rewards should look like
19
+
20
+ # Use this if you want the rewards / triggers to be exclusive
21
+ # This means if a AND b are fulfilled then the player gets only reward from a
22
+ # IMPORTANT: They do NOT fire events for some reason.
23
+ simple_dynamic_effect = {
24
+ custom_tooltip = $first_custom_tooltip$
25
+ if = {
26
+ limit = {
27
+ $first_limit$
28
+ }
29
+ custom_tooltip = BONUS_REWARD_YES
30
+ }
31
+ else = { custom_tooltip = BONUS_REWARD_NO }
32
+ tooltip = {
33
+ $first_effect$
34
+ }
35
+ custom_tooltip = mission_alternatively_tt
36
+ [[second_custom_tooltip] custom_tooltip = $second_custom_tooltip$ ]
37
+ if = {
38
+ limit = {
39
+ $second_limit$
40
+ }
41
+ custom_tooltip = BONUS_REWARD_YES
42
+ }
43
+ else = { custom_tooltip = BONUS_REWARD_NO }
44
+ tooltip = {
45
+ $second_effect$
46
+ }
47
+ hidden_effect = {
48
+ if = {
49
+ limit = { $first_limit$ }
50
+ $first_effect$
51
+ }
52
+ else = {
53
+ $second_effect$
54
+ }
55
+ }
56
+ }
57
+
58
+ # Use this if you want the rewards / triggers to be additive
59
+ # This means if a AND b are fulfilled then the player gets both
60
+ simple_dynamic_effect_without_alternative = {
61
+ custom_tooltip = $first_custom_tooltip$
62
+ if = {
63
+ limit = {
64
+ $first_limit$
65
+ }
66
+ custom_tooltip = BONUS_REWARD_YES
67
+ }
68
+ else = { custom_tooltip = BONUS_REWARD_NO }
69
+ tooltip = {
70
+ $first_effect$
71
+ }
72
+ [[second_custom_tooltip] custom_tooltip = $second_custom_tooltip$ ]
73
+ if = {
74
+ limit = {
75
+ $second_limit$
76
+ }
77
+ custom_tooltip = BONUS_REWARD_YES
78
+ }
79
+ else = { custom_tooltip = BONUS_REWARD_NO }
80
+ tooltip = {
81
+ $second_effect$
82
+ }
83
+ hidden_effect = {
84
+ if = {
85
+ limit = { $first_limit$ }
86
+ $first_effect$
87
+ }
88
+ if = {
89
+ limit = { $second_limit$ }
90
+ $second_effect$
91
+ }
92
+ }
93
+ }
94
+
95
+ # "Complex" as in "if you need this effect then you should rethink your mission reward"
96
+ # Supports up to 10 dynamic effects
97
+ # Will probably result in a grocery list when you hover over the effects though
98
+ complex_dynamic_effect = {
99
+ custom_tooltip = $first_custom_tooltip$
100
+ if = {
101
+ limit = {
102
+ $first_limit$
103
+ }
104
+ custom_tooltip = BONUS_REWARD_YES
105
+ }
106
+ else = { custom_tooltip = BONUS_REWARD_NO }
107
+ tooltip = {
108
+ $first_effect$
109
+ }
110
+
111
+ [[second_custom_tooltip]
112
+ custom_tooltip = mission_alternatively_tt
113
+ custom_tooltip = $second_custom_tooltip$
114
+ if = {
115
+ limit = {
116
+ $second_limit$
117
+ }
118
+ custom_tooltip = BONUS_REWARD_YES
119
+ }
120
+ else = { custom_tooltip = BONUS_REWARD_NO }
121
+ tooltip = {
122
+ $second_effect$
123
+ }
124
+ ]
125
+
126
+ [[third_custom_tooltip]
127
+ custom_tooltip = mission_alternatively_tt
128
+ custom_tooltip = $third_custom_tooltip$
129
+ if = {
130
+ limit = {
131
+ $third_limit$
132
+ }
133
+ custom_tooltip = BONUS_REWARD_YES
134
+ }
135
+ else = { custom_tooltip = BONUS_REWARD_NO }
136
+ tooltip = {
137
+ $third_effect$
138
+ }
139
+ ]
140
+
141
+ [[fourth_custom_tooltip]
142
+ custom_tooltip = mission_alternatively_tt
143
+ custom_tooltip = $fourth_custom_tooltip$
144
+ if = {
145
+ limit = {
146
+ $fourth_limit$
147
+ }
148
+ custom_tooltip = BONUS_REWARD_YES
149
+ }
150
+ else = { custom_tooltip = BONUS_REWARD_NO }
151
+ tooltip = {
152
+ $fourth_effect$
153
+ }
154
+ ]
155
+
156
+ [[fifth_custom_tooltip]
157
+ custom_tooltip = mission_alternatively_tt
158
+ custom_tooltip = $fifth_custom_tooltip$
159
+ if = {
160
+ limit = {
161
+ $fifth_limit$
162
+ }
163
+ custom_tooltip = BONUS_REWARD_YES
164
+ }
165
+ else = { custom_tooltip = BONUS_REWARD_NO }
166
+ tooltip = {
167
+ $fifth_effect$
168
+ }
169
+ ]
170
+
171
+ [[sixth_custom_tooltip]
172
+ custom_tooltip = mission_alternatively_tt
173
+ custom_tooltip = $sixth_custom_tooltip$
174
+ if = {
175
+ limit = {
176
+ $sixth_limit$
177
+ }
178
+ custom_tooltip = BONUS_REWARD_YES
179
+ }
180
+ else = { custom_tooltip = BONUS_REWARD_NO }
181
+ tooltip = {
182
+ $sixth_effect$
183
+ }
184
+ ]
185
+
186
+ [[seventh_custom_tooltip]
187
+ custom_tooltip = mission_alternatively_tt
188
+ custom_tooltip = $seventh_custom_tooltip$
189
+ if = {
190
+ limit = {
191
+ $seventh_limit$
192
+ }
193
+ custom_tooltip = BONUS_REWARD_YES
194
+ }
195
+ else = { custom_tooltip = BONUS_REWARD_NO }
196
+ tooltip = {
197
+ $seventh_effect$
198
+ }
199
+ ]
200
+
201
+ [[eighth_custom_tooltip]
202
+ custom_tooltip = mission_alternatively_tt
203
+ custom_tooltip = $eighth_custom_tooltip$
204
+ if = {
205
+ limit = {
206
+ $eighth_limit$
207
+ }
208
+ custom_tooltip = BONUS_REWARD_YES
209
+ }
210
+ else = { custom_tooltip = BONUS_REWARD_NO }
211
+ tooltip = {
212
+ $eighth_effect$
213
+ }
214
+ ]
215
+
216
+ [[nineth_custom_tooltip]
217
+ custom_tooltip = mission_alternatively_tt
218
+ custom_tooltip = $nineth_custom_tooltip$
219
+ if = {
220
+ limit = {
221
+ $nineth_limit$
222
+ }
223
+ custom_tooltip = BONUS_REWARD_YES
224
+ }
225
+ else = { custom_tooltip = BONUS_REWARD_NO }
226
+ tooltip = {
227
+ $nineth_effect$
228
+ }
229
+ ]
230
+
231
+ [[tenth_custom_tooltip]
232
+ custom_tooltip = mission_alternatively_tt
233
+ custom_tooltip = $tenth_custom_tooltip$
234
+ if = {
235
+ limit = {
236
+ $tenth_limit$
237
+ }
238
+ custom_tooltip = BONUS_REWARD_YES
239
+ }
240
+ else = { custom_tooltip = BONUS_REWARD_NO }
241
+ tooltip = {
242
+ $tenth_effect$
243
+ }
244
+ ]
245
+
246
+ hidden_effect = {
247
+ if = {
248
+ limit = { $first_limit$ }
249
+ $first_effect$
250
+ }
251
+ [[second_custom_tooltip]
252
+ else_if = {
253
+ limit = { $second_limit$ }
254
+ $second_effect$
255
+ }
256
+ ]
257
+ [[third_custom_tooltip]
258
+ else_if = {
259
+ limit = { $third_limit$ }
260
+ $third_effect$
261
+ }
262
+ ]
263
+ [[fourth_custom_tooltip]
264
+ else_if = {
265
+ limit = { $fourth_limit$ }
266
+ $fourth_effect$
267
+ }
268
+ ]
269
+ [[fifth_custom_tooltip]
270
+ else_if = {
271
+ limit = { $fifth_limit$ }
272
+ $fifth_effect$
273
+ }
274
+ ]
275
+ [[sixth_custom_tooltip]
276
+ else_if = {
277
+ limit = { $sixth_limit$ }
278
+ $sixth_effect$
279
+ }
280
+ ]
281
+ [[seventh_custom_tooltip]
282
+ else_if = {
283
+ limit = { $seventh_limit$ }
284
+ $seventh_effect$
285
+ }
286
+ ]
287
+ [[eigth_custom_tooltip]
288
+ else_if = {
289
+ limit = { $eigth_limit$ }
290
+ $eigth_effect$
291
+ }
292
+ ]
293
+ [[nineth_custom_tooltip]
294
+ else_if = {
295
+ limit = { $nineth_limit$ }
296
+ $nineth_effect$
297
+ }
298
+ ]
299
+ [[tenth_custom_tooltip]
300
+ else_if = {
301
+ limit = { $tenth_limit$ }
302
+ $tenth_effect$
303
+ }
304
+ ]
305
+ }
306
+ }
307
+
308
+ # Use this if you want the rewards / triggers to be additive
309
+ # This means if a AND b are fulfilled then the player gets both
310
+ complex_dynamic_effect_without_alternative = {
311
+ custom_tooltip = $first_custom_tooltip$
312
+ if = {
313
+ limit = {
314
+ $first_limit$
315
+ }
316
+ custom_tooltip = BONUS_REWARD_YES
317
+ }
318
+ else = { custom_tooltip = BONUS_REWARD_NO }
319
+ tooltip = {
320
+ $first_effect$
321
+ }
322
+
323
+ [[second_custom_tooltip]
324
+ custom_tooltip = $second_custom_tooltip$
325
+ if = {
326
+ limit = {
327
+ $second_limit$
328
+ }
329
+ custom_tooltip = BONUS_REWARD_YES
330
+ }
331
+ else = { custom_tooltip = BONUS_REWARD_NO }
332
+ tooltip = {
333
+ $second_effect$
334
+ }
335
+ ]
336
+
337
+ [[third_custom_tooltip]
338
+ custom_tooltip = $third_custom_tooltip$
339
+ if = {
340
+ limit = {
341
+ $third_limit$
342
+ }
343
+ custom_tooltip = BONUS_REWARD_YES
344
+ }
345
+ else = { custom_tooltip = BONUS_REWARD_NO }
346
+ tooltip = {
347
+ $third_effect$
348
+ }
349
+ ]
350
+
351
+ [[fourth_custom_tooltip]
352
+ custom_tooltip = $fourth_custom_tooltip$
353
+ if = {
354
+ limit = {
355
+ $fourth_limit$
356
+ }
357
+ custom_tooltip = BONUS_REWARD_YES
358
+ }
359
+ else = { custom_tooltip = BONUS_REWARD_NO }
360
+ tooltip = {
361
+ $fourth_effect$
362
+ }
363
+ ]
364
+
365
+ [[fifth_custom_tooltip]
366
+ custom_tooltip = $fifth_custom_tooltip$
367
+ if = {
368
+ limit = {
369
+ $fifth_limit$
370
+ }
371
+ custom_tooltip = BONUS_REWARD_YES
372
+ }
373
+ else = { custom_tooltip = BONUS_REWARD_NO }
374
+ tooltip = {
375
+ $fifth_effect$
376
+ }
377
+ ]
378
+
379
+ [[sixth_custom_tooltip]
380
+ custom_tooltip = $sixth_custom_tooltip$
381
+ if = {
382
+ limit = {
383
+ $sixth_limit$
384
+ }
385
+ custom_tooltip = BONUS_REWARD_YES
386
+ }
387
+ else = { custom_tooltip = BONUS_REWARD_NO }
388
+ tooltip = {
389
+ $sixth_effect$
390
+ }
391
+ ]
392
+
393
+ [[seventh_custom_tooltip]
394
+ custom_tooltip = $seventh_custom_tooltip$
395
+ if = {
396
+ limit = {
397
+ $seventh_limit$
398
+ }
399
+ custom_tooltip = BONUS_REWARD_YES
400
+ }
401
+ else = { custom_tooltip = BONUS_REWARD_NO }
402
+ tooltip = {
403
+ $seventh_effect$
404
+ }
405
+ ]
406
+
407
+ [[eighth_custom_tooltip]
408
+ custom_tooltip = $eighth_custom_tooltip$
409
+ if = {
410
+ limit = {
411
+ $eighth_limit$
412
+ }
413
+ custom_tooltip = BONUS_REWARD_YES
414
+ }
415
+ else = { custom_tooltip = BONUS_REWARD_NO }
416
+ tooltip = {
417
+ $eighth_effect$
418
+ }
419
+ ]
420
+
421
+ [[nineth_custom_tooltip]
422
+ custom_tooltip = $nineth_custom_tooltip$
423
+ if = {
424
+ limit = {
425
+ $nineth_limit$
426
+ }
427
+ custom_tooltip = BONUS_REWARD_YES
428
+ }
429
+ else = { custom_tooltip = BONUS_REWARD_NO }
430
+ tooltip = {
431
+ $nineth_effect$
432
+ }
433
+ ]
434
+
435
+ [[tenth_custom_tooltip]
436
+ custom_tooltip = $tenth_custom_tooltip$
437
+ if = {
438
+ limit = {
439
+ $tenth_limit$
440
+ }
441
+ custom_tooltip = BONUS_REWARD_YES
442
+ }
443
+ else = { custom_tooltip = BONUS_REWARD_NO }
444
+ tooltip = {
445
+ $tenth_effect$
446
+ }
447
+ ]
448
+
449
+ [[combined_effect]
450
+ if = {
451
+ limit = {
452
+ $first_limit$
453
+ $second_limit$
454
+ $third_limit$
455
+ $fourth_limit$
456
+ $fifth_limit$
457
+ $sixth_limit$
458
+ $seventh_limit$
459
+ $eigth_limit$
460
+ $nineth_limit$
461
+ $tenth_limit$
462
+ }
463
+ custom_tooltip = COMBINED_BONUS_REWARD_YES
464
+ }
465
+ else = { custom_tooltip = COMBINED_BONUS_REWARD_NO }
466
+ tooltip = {
467
+ $combined_effect$
468
+ }
469
+ ]
470
+
471
+ hidden_effect = {
472
+ if = {
473
+ limit = { $first_limit$ }
474
+ $first_effect$
475
+ }
476
+ [[second_custom_tooltip]
477
+ if = {
478
+ limit = { $second_limit$ }
479
+ $second_effect$
480
+ }
481
+ ]
482
+ [[third_custom_tooltip]
483
+ if = {
484
+ limit = { $third_limit$ }
485
+ $third_effect$
486
+ }
487
+ ]
488
+ [[fourth_custom_tooltip]
489
+ if = {
490
+ limit = { $fourth_limit$ }
491
+ $fourth_effect$
492
+ }
493
+ ]
494
+ [[fifth_custom_tooltip]
495
+ if = {
496
+ limit = { $fifth_limit$ }
497
+ $fifth_effect$
498
+ }
499
+ ]
500
+ [[sixth_custom_tooltip]
501
+ if = {
502
+ limit = { $sixth_limit$ }
503
+ $sixth_effect$
504
+ }
505
+ ]
506
+ [[seventh_custom_tooltip]
507
+ if = {
508
+ limit = { $seventh_limit$ }
509
+ $seventh_effect$
510
+ }
511
+ ]
512
+ [[eigth_custom_tooltip]
513
+ if = {
514
+ limit = { $eigth_limit$ }
515
+ $eigth_effect$
516
+ }
517
+ ]
518
+ [[nineth_custom_tooltip]
519
+ if = {
520
+ limit = { $nineth_limit$ }
521
+ $nineth_effect$
522
+ }
523
+ ]
524
+ [[tenth_custom_tooltip]
525
+ if = {
526
+ limit = { $tenth_limit$ }
527
+ $tenth_effect$
528
+ }
529
+ ]
530
+ [[combined_effect]
531
+ if = {
532
+ limit = {
533
+ $first_limit$
534
+ $second_limit$
535
+ $third_limit$
536
+ $fourth_limit$
537
+ $fifth_limit$
538
+ $sixth_limit$
539
+ $seventh_limit$
540
+ $eigth_limit$
541
+ $nineth_limit$
542
+ $tenth_limit$
543
+ }
544
+ $combined_effect$
545
+ }
546
+ ]
547
+ }
548
+ }
549
+
550
+ #Tag specific reward for the dynamic effects
551
+ #Ottoman Mission Rewards
552
+ tur_crimean_khaganate_effect_a = {
553
+ CRI = {
554
+ add_historical_friend = ROOT
555
+ if = {
556
+ limit = {
557
+ is_subject_of_type = tributary_state
558
+ }
559
+ tooltip = {
560
+ ROOT = {
561
+ create_subject = {
562
+ subject_type = march
563
+ who = PREV
564
+ }
565
+ }
566
+ }
567
+ }
568
+ hidden_effect = {
569
+ if = {
570
+ limit = { is_subject_of_type = tributary_state }
571
+ grant_independence = yes
572
+ ROOT = {
573
+ create_subject = {
574
+ subject_type = march
575
+ who = PREV
576
+ }
577
+ }
578
+ }
579
+ }
580
+ }
581
+ add_historical_friend = CRI
582
+ add_country_modifier = {
583
+ name = tur_tatar_vanguard_modifier
584
+ duration = -1
585
+ desc = as_long_as_they_are_subject_desc
586
+ }
587
+ }
588
+
589
+ tur_address_firman_effect_a = {
590
+ hidden_effect = {
591
+ if = {
592
+ limit = {
593
+ GRA = {
594
+ OR = {
595
+ is_subject_of = ROOT
596
+ alliance_with = ROOT
597
+ }
598
+ }
599
+ }
600
+ GRA = { save_event_target_as = tur_andalusian_ally }
601
+ }
602
+ else_if = {
603
+ limit = {
604
+ ADU = {
605
+ OR = {
606
+ is_subject_of = ROOT
607
+ alliance_with = ROOT
608
+ }
609
+ }
610
+ }
611
+ ADU = { save_event_target_as = tur_andalusian_ally }
612
+ }
613
+ if = {
614
+ limit = { has_saved_event_target = tur_andalusian_ally }
615
+ add_historical_friend = event_target:tur_andalusian_ally
616
+ event_target:tur_andalusian_ally = {
617
+ add_historical_friend = ROOT
618
+ add_country_modifier = {
619
+ name = tur_turkish_andalusian_relations_gra
620
+ duration = -1
621
+ hidden = yes
622
+ }
623
+ add_accepted_culture = turkish
624
+ if = {
625
+ limit = { NOT = { tag = ADU } }
626
+ ADU = { add_historical_friend = ROOT }
627
+ ROOT = { add_historical_friend = ADU }
628
+ }
629
+ random_province = {
630
+ limit = { owned_by = event_target:tur_andalusian_ally is_capital = no has_port = yes culture = event_target:tur_andalusian }
631
+ add_base_tax = 2
632
+ add_base_production = 2
633
+ add_base_manpower = 2
634
+ change_religion = ROOT
635
+ change_culture = turkish
636
+ }
637
+ for = {
638
+ amount = 3
639
+ effect = "random_owned_province = { add_base_tax = 1 }"
640
+ }
641
+ for = {
642
+ amount = 3
643
+ effect = "random_owned_province = { add_base_production = 1 }"
644
+ }
645
+ for = {
646
+ amount = 3
647
+ effect = "random_owned_province = { add_base_manpower = 1 }"
648
+ }
649
+ }
650
+ add_country_modifier = {
651
+ name = tur_turkish_andalusian_relations_tur
652
+ duration = -1
653
+ hidden = yes
654
+ }
655
+ add_accepted_culture = andalucian
656
+ random_province = {
657
+ limit = { owned_by = ROOT is_capital = no culture = event_target:tur_andalusian_ally has_port = yes }
658
+ add_base_tax = 2
659
+ add_base_production = 2
660
+ add_base_manpower = 2
661
+ change_religion = event_target:tur_andalusian_ally
662
+ change_culture = andalucian
663
+ }
664
+ #for = {
665
+ # amount = 4
666
+ # effect = "random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }"
667
+ #}
668
+ random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }
669
+ random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }
670
+ random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }
671
+ random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }
672
+ random_owned_province = { random_list = { 1 = { add_base_tax = 2 } 1 = { add_base_production = 2 } 1 = { add_base_manpower = 2 } } }
673
+ }
674
+ }
675
+ }
676
+
677
+ tur_address_firman_effect_b = {
678
+ country_event_with_insight = {
679
+ id = flavor_tur.219
680
+ insight_tooltip = INSIGHT_JUST_TOOLTIP
681
+ effect_tooltip = "
682
+ thrace_area = {
683
+ limit = {
684
+ country_or_non_sovereign_subject_holds = ROOT
685
+ }
686
+ add_province_modifier = {
687
+ name = tur_morisco_refugees_modifier
688
+ duration = 7300
689
+ }
690
+ }
691
+ define_advisor = {
692
+ type = artist
693
+ cost_multiplier = 0.5
694
+ culture = andalucian
695
+ religion = sunni
696
+ }
697
+ "
698
+ }
699
+ }
700
+
701
+ tur_al_andalus_eyalet_effect_a = {
702
+ add_country_modifier = {
703
+ name = tur_re_reconquista
704
+ duration = -1
705
+ }
706
+ custom_tooltip = tur_al_andalus_eyalet_bt
707
+ hidden_effect = {
708
+ if = {
709
+ limit = {
710
+ any_subject_country = {
711
+ religion = ROOT
712
+ owns = 225
713
+ owns = 223
714
+ owns = 226
715
+ owns = 224
716
+ num_of_owned_provinces_with = {
717
+ region = iberia_region
718
+ value = 10
719
+ }
720
+ capital_scope = {
721
+ region = iberia_region
722
+ }
723
+ }
724
+ }
725
+ random_subject_country = {
726
+ limit = {
727
+ religion = ROOT
728
+ owns = 225
729
+ owns = 223
730
+ owns = 226
731
+ owns = 224
732
+ num_of_owned_provinces_with = {
733
+ region = iberia_region
734
+ value = 10
735
+ }
736
+ capital_scope = {
737
+ region = iberia_region
738
+ }
739
+ }
740
+ add_country_modifier = {
741
+ name = tur_re_reconquista
742
+ duration = -1
743
+ }
744
+ }
745
+ }
746
+ if = {
747
+ limit = {
748
+ any_ally = {
749
+ religion = ROOT
750
+ owns = 225
751
+ owns = 223
752
+ owns = 226
753
+ owns = 224
754
+ num_of_owned_provinces_with = {
755
+ region = iberia_region
756
+ value = 10
757
+ }
758
+ capital_scope = {
759
+ region = iberia_region
760
+ }
761
+ }
762
+ }
763
+ random_ally = {
764
+ limit = {
765
+ religion = ROOT
766
+ owns = 225
767
+ owns = 223
768
+ owns = 226
769
+ owns = 224
770
+ num_of_owned_provinces_with = {
771
+ region = iberia_region
772
+ value = 10
773
+ }
774
+ capital_scope = {
775
+ region = iberia_region
776
+ }
777
+ }
778
+ add_country_modifier = {
779
+ name = tur_re_reconquista
780
+ duration = -1
781
+ }
782
+ }
783
+ }
784
+ }
785
+ }
786
+
787
+ #British Mission Rewards
788
+ gbr_take_over_the_lowlands_effect_a = {
789
+ add_country_modifier = {
790
+ name = gbr_english_dutch_trade_partners
791
+ duration = -1
792
+ desc = UNTIL_ALLIANCE_BREAK
793
+ }
794
+ hidden_effect = {
795
+ random_ally = {
796
+ limit = {
797
+ capital_scope = {
798
+ region = low_countries_region
799
+ }
800
+ OR = {
801
+ primary_culture = dutch
802
+ primary_culture = flemish
803
+ primary_culture = frisian
804
+ primary_culture = wallonian
805
+ }
806
+ num_of_owned_provinces_with = {
807
+ region = low_countries_region
808
+ value = 15
809
+ }
810
+ }
811
+ add_historical_friend = ROOT
812
+ ROOT = { add_historical_friend = ROOT }
813
+ add_country_modifier = {
814
+ name = gbr_english_dutch_trade_partners
815
+ duration = -1
816
+ }
817
+ }
818
+ }
819
+ }
820
+
821
+ #Persian missions
822
+ per_claim_constantinople_effect = {
823
+ 151 = {
824
+ if = {
825
+ limit = { root = { has_country_flag = per_zoroastrian_missions } }
826
+ change_province_name = "Kustantiniya"
827
+ rename_capital = "Kustantiniya"
828
+ }
829
+ else = {
830
+ change_province_name = "Konstantiniyyeh"
831
+ rename_capital = "Konstantiniyyeh"
832
+ }
833
+ add_base_tax = 2
834
+ add_base_production = 2
835
+ add_base_manpower = 1
836
+ add_province_modifier = {
837
+ name = per_the_second_capital
838
+ duration = -1
839
+ }
840
+ }
841
+ }
842
+ per_invade_india_effect = {
843
+ add_adm_power = 75
844
+ add_permanent_claim_multi_provinces = { target = northern_sindh_area }
845
+ add_permanent_claim_multi_provinces = { target = sindh_area }
846
+ add_permanent_claim_multi_provinces = { target = jangladesh_area }
847
+ add_permanent_claim_multi_provinces = { target = marwar_area }
848
+ add_permanent_claim_multi_provinces = { target = patan_area }
849
+ add_permanent_claim_multi_provinces = { target = saurashtra_area }
850
+ add_permanent_claim_multi_provinces = { target = jaipur_area }
851
+ }
852
+
853
+
854
+ BYZ_convert_to_greek_culture = { #It's here in case I want to add anatolian-themed cultures.
855
+ if = {
856
+ limit = {
857
+ OR = {
858
+ area = erzurum_area
859
+ area = kastamonu_area
860
+ }
861
+ }
862
+ change_culture = pontic_greek
863
+ }
864
+ else = {
865
+ change_culture = greek
866
+ }
867
+ }
868
+
869
+ BYZ_upgrade_hexamilion_if_possible = {
870
+ clr_country_flag = BYZ_upgrading_hexamilion
871
+
872
+ 4701 = {
873
+ if = {
874
+ limit = {
875
+ owned_by = ROOT
876
+ }
877
+ if = {
878
+ limit = {
879
+ has_province_modifier = BYZ_hexamilion_wall_2
880
+ }
881
+ #nothing should happen. should not be achievable
882
+ }
883
+ else_if = {
884
+ limit = {
885
+ has_province_modifier = BYZ_hexamilion_wall_1
886
+ }
887
+ remove_province_modifier = BYZ_hexamilion_wall_1
888
+ add_province_modifier = {
889
+ name = BYZ_hexamilion_wall_2
890
+ duration = -1
891
+ }
892
+ }
893
+ else = {
894
+ add_province_modifier = {
895
+ name = BYZ_hexamilion_wall_1
896
+ duration = -1
897
+ }
898
+ }
899
+ }
900
+ }
901
+ }
902
+
903
+ BYZ_upgrade_theodosian_if_possible = {
904
+ clr_country_flag = BYZ_upgrading_theodosian
905
+
906
+ 151 = {
907
+ if = {
908
+ limit = {
909
+ owned_by = ROOT
910
+ }
911
+ if = {
912
+ limit = {
913
+ has_province_modifier = BYZ_theodosian_wall_3
914
+ }
915
+ #nothing should happen. should not be achievable
916
+ }
917
+ else_if = {
918
+ limit = {
919
+ has_province_modifier = BYZ_theodosian_wall_2
920
+ }
921
+ remove_province_modifier = BYZ_theodosian_wall_2
922
+ add_province_modifier = {
923
+ name = BYZ_theodosian_wall_3
924
+ duration = -1
925
+ }
926
+ }
927
+ else_if = {
928
+ limit = {
929
+ has_province_modifier = BYZ_theodosian_wall_1
930
+ }
931
+ remove_province_modifier = BYZ_theodosian_wall_1
932
+ add_province_modifier = {
933
+ name = BYZ_theodosian_wall_2
934
+ duration = -1
935
+ }
936
+ }
937
+ else = {
938
+ add_province_modifier = {
939
+ name = BYZ_theodosian_wall_1
940
+ duration = -1
941
+ }
942
+ }
943
+ }
944
+ }
945
+ }
946
+
947
+ BYZ_branch_effect = {
948
+ custom_tooltip = BYZ_this_is_a_branching_mission
949
+ }
950
+
951
+ BYZ_if_saved_export_variable = {
952
+ if = {
953
+ limit = {
954
+ has_saved_event_target = $name$
955
+ }
956
+ event_target:$name$ = {
957
+ export_to_variable = {
958
+ variable_name = byz_yearly_income
959
+ value = years_of_income
960
+ }
961
+ }
962
+ }
963
+ }
964
+
965
+ BYZ_offer_mosaicists = {
966
+ custom_tooltip = BYZ_we_will_offer_to_this_for
967
+
968
+ tooltip = {
969
+ if = {
970
+ limit = {
971
+ has_dlc = "Leviathan"
972
+ }
973
+ add_country_modifier = {
974
+ name = BYZ_mosaicists_Leviathan
975
+ duration = 3650
976
+ }
977
+ }
978
+ else = {
979
+ add_country_modifier = {
980
+ name = BYZ_mosaicists
981
+ duration = 3650
982
+ }
983
+ }
984
+ }
985
+
986
+ custom_tooltip = BYZ_if_they_deny_we_will_still_get_modifier
987
+
988
+ hidden_effect = {
989
+ country_event = { id = MEE_Byzantine_Events.25 }
990
+ }
991
+ }
992
+
993
+ ARB_flavor_event_6_effect = {
994
+
995
+ add_permanent_power_projection = {
996
+ type = arb_permanent_power_projection
997
+ amount = 10
998
+ }
999
+
1000
+ custom_tooltip = " "
1001
+
1002
+ if = {
1003
+ limit = {
1004
+ has_dlc = "Mandate of Heaven"
1005
+ }
1006
+ custom_tooltip = ARB_golden_age_renewal_tt
1007
+ hidden_effect = {
1008
+ if = {
1009
+ limit = { has_had_golden_age = yes }
1010
+ reset_golden_age = yes
1011
+ }
1012
+ else_if = {
1013
+ limit = { in_golden_age = yes }
1014
+ extend_golden_age = 600
1015
+ }
1016
+ }
1017
+ custom_tooltip = " "
1018
+ }
1019
+ else = {
1020
+ add_country_modifier = {
1021
+ name = ARB_second_islamic_golden_age_modifier
1022
+ duration = 18250
1023
+ }
1024
+ }
1025
+
1026
+ custom_tooltip = ARB_permanent_claims_on_all_muslim_provinces
1027
+
1028
+ custom_tooltip = " "
1029
+
1030
+ if = {
1031
+ limit = {
1032
+ has_country_modifier = unified_islam
1033
+ }
1034
+ add_country_modifier = {
1035
+ name = ARB_united_islam_upgraded
1036
+ duration = -1
1037
+ }
1038
+ }
1039
+ else = {
1040
+ set_country_flag = ARB_upgraded_uniting_islam
1041
+ custom_tooltip = ARB_uniting_islam_will_now_give_10_warscore_cost_vs_other_religions
1042
+ }
1043
+ }
1044
+
1045
+ add_persian_and_zoroastrian_influence = {
1046
+ if = {
1047
+ limit = { has_government_mechanic = persian_influence_mechanic }
1048
+ add_government_power = {
1049
+ mechanic_type = persian_influence_mechanic
1050
+ power_type = persian_influence
1051
+ value = $value$
1052
+ }
1053
+ }
1054
+ if = {
1055
+ limit = { has_government_mechanic = the_three_royal_fires_mechanic }
1056
+ add_government_power = {
1057
+ mechanic_type = the_three_royal_fires_mechanic
1058
+ power_type = asha_vahishta
1059
+ value = $value$
1060
+ }
1061
+ }
1062
+ }
1063
+
1064
+ pick_best_provinces = {
1065
+ [[scope]
1066
+ pick_best_provinces_2 = {
1067
+ scope = "$scope$"
1068
+ scale = "$scale$"
1069
+ event_target_name = "$event_target_name$"
1070
+ global_trigger = "$global_trigger$"
1071
+ 1 = "$1$"
1072
+ 2 = "$2$"
1073
+ 3 = "$3$"
1074
+ 4 = "$4$"
1075
+ 5 = "$5$"
1076
+ 10 = "$10$"
1077
+ }
1078
+ set_global_flag = PICK_BEST_PROVINCES_FLAG
1079
+ ] #curses for not having an [ELSE ] or something.
1080
+ if = {
1081
+ limit = {
1082
+ NOT = { has_global_flag = PICK_BEST_PROVINCES_FLAG } #This check is here to prevent the algorithm from being run again after the scoped version was executed
1083
+ }
1084
+ pick_best_provinces_2 = {
1085
+ scope = " every_province "
1086
+ scale = "$scale$"
1087
+ event_target_name = "$event_target_name$"
1088
+ global_trigger = "$global_trigger$"
1089
+ 1 = "$1$"
1090
+ 2 = "$2$"
1091
+ 3 = "$3$"
1092
+ 4 = "$4$"
1093
+ 5 = "$5$"
1094
+ 10 = "$10$"
1095
+ }
1096
+ }
1097
+ else = { clr_global_flag = PICK_BEST_PROVINCES_FLAG }
1098
+ }
1099
+
1100
+ pick_best_provinces_2 = {
1101
+ hidden_effect = {
1102
+ [[1]
1103
+ if = {
1104
+ limit = { always = $1$ }
1105
+ pick_best_province = {
1106
+ scale = "$scale$"
1107
+ scope = $scope$
1108
+ global_trigger = "$global_trigger$"
1109
+ event_target_name = "$event_target_name$"
1110
+ number = 1
1111
+ }
1112
+ }
1113
+ ]
1114
+ [[2]
1115
+ if = {
1116
+ limit = { always = $2$ }
1117
+ pick_best_province = {
1118
+ scale = "$scale$"
1119
+ scope = $scope$
1120
+ global_trigger = "$global_trigger$"
1121
+ event_target_name = "$event_target_name$"
1122
+ number = 1
1123
+ }
1124
+ pick_best_province = {
1125
+ scale = "$scale$"
1126
+ scope = $scope$
1127
+ global_trigger = "$global_trigger$"
1128
+ event_target_name = "$event_target_name$"
1129
+ number = 2
1130
+ }
1131
+ }
1132
+ ]
1133
+ [[3]
1134
+ if = {
1135
+ limit = { always = $3$ }
1136
+ pick_best_province = {
1137
+ scale = "$scale$"
1138
+ scope = $scope$
1139
+ global_trigger = "$global_trigger$"
1140
+ event_target_name = "$event_target_name$"
1141
+ number = 1
1142
+ }
1143
+ pick_best_province = {
1144
+ scale = "$scale$"
1145
+ scope = $scope$
1146
+ global_trigger = "$global_trigger$"
1147
+ event_target_name = "$event_target_name$"
1148
+ number = 2
1149
+ }
1150
+ pick_best_province = {
1151
+ scale = "$scale$"
1152
+ scope = $scope$
1153
+ global_trigger = "$global_trigger$"
1154
+ event_target_name = "$event_target_name$"
1155
+ number = 3
1156
+ }
1157
+ }
1158
+ ]
1159
+ [[4]
1160
+ if = {
1161
+ limit = { always = $4$ }
1162
+ pick_best_province = {
1163
+ scale = "$scale$"
1164
+ scope = $scope$
1165
+ global_trigger = "$global_trigger$"
1166
+ event_target_name = "$event_target_name$"
1167
+ number = 1
1168
+ }
1169
+ pick_best_province = {
1170
+ scale = "$scale$"
1171
+ scope = $scope$
1172
+ global_trigger = "$global_trigger$"
1173
+ event_target_name = "$event_target_name$"
1174
+ number = 2
1175
+ }
1176
+ pick_best_province = {
1177
+ scale = "$scale$"
1178
+ scope = $scope$
1179
+ global_trigger = "$global_trigger$"
1180
+ event_target_name = "$event_target_name$"
1181
+ number = 3
1182
+ }
1183
+ pick_best_province = {
1184
+ scale = "$scale$"
1185
+ scope = $scope$
1186
+ global_trigger = "$global_trigger$"
1187
+ event_target_name = "$event_target_name$"
1188
+ number = 4
1189
+ }
1190
+ }
1191
+ ]
1192
+ [[5]
1193
+ if = {
1194
+ limit = { always = $5$ }
1195
+ pick_best_province = {
1196
+ scale = "$scale$"
1197
+ scope = $scope$
1198
+ global_trigger = "$global_trigger$"
1199
+ event_target_name = "$event_target_name$"
1200
+ number = 1
1201
+ }
1202
+ pick_best_province = {
1203
+ scale = "$scale$"
1204
+ scope = $scope$
1205
+ global_trigger = "$global_trigger$"
1206
+ event_target_name = "$event_target_name$"
1207
+ number = 2
1208
+ }
1209
+ pick_best_province = {
1210
+ scale = "$scale$"
1211
+ scope = $scope$
1212
+ global_trigger = "$global_trigger$"
1213
+ event_target_name = "$event_target_name$"
1214
+ number = 3
1215
+ }
1216
+ pick_best_province = {
1217
+ scale = "$scale$"
1218
+ scope = $scope$
1219
+ global_trigger = "$global_trigger$"
1220
+ event_target_name = "$event_target_name$"
1221
+ number = 4
1222
+ }
1223
+ pick_best_province = {
1224
+ scale = "$scale$"
1225
+ scope = $scope$
1226
+ global_trigger = "$global_trigger$"
1227
+ event_target_name = "$event_target_name$"
1228
+ number = 5
1229
+ }
1230
+ }
1231
+ ]
1232
+ [[10]
1233
+ if = {
1234
+ limit = { always = $10$ }
1235
+ pick_best_province = {
1236
+ scale = "$scale$"
1237
+ scope = $scope$
1238
+ global_trigger = "$global_trigger$"
1239
+ event_target_name = "$event_target_name$"
1240
+ number = 1
1241
+ }
1242
+ pick_best_province = {
1243
+ scale = "$scale$"
1244
+ scope = $scope$
1245
+ global_trigger = "$global_trigger$"
1246
+ event_target_name = "$event_target_name$"
1247
+ number = 2
1248
+ }
1249
+ pick_best_province = {
1250
+ scale = "$scale$"
1251
+ scope = $scope$
1252
+ global_trigger = "$global_trigger$"
1253
+ event_target_name = "$event_target_name$"
1254
+ number = 3
1255
+ }
1256
+ pick_best_province = {
1257
+ scale = "$scale$"
1258
+ scope = $scope$
1259
+ global_trigger = "$global_trigger$"
1260
+ event_target_name = "$event_target_name$"
1261
+ number = 4
1262
+ }
1263
+ pick_best_province = {
1264
+ scale = "$scale$"
1265
+ scope = $scope$
1266
+ global_trigger = "$global_trigger$"
1267
+ event_target_name = "$event_target_name$"
1268
+ number = 5
1269
+ }
1270
+ pick_best_province = {
1271
+ scale = "$scale$"
1272
+ scope = $scope$
1273
+ global_trigger = "$global_trigger$"
1274
+ event_target_name = "$event_target_name$"
1275
+ number = 6
1276
+ }
1277
+ pick_best_province = {
1278
+ scale = "$scale$"
1279
+ scope = $scope$
1280
+ global_trigger = "$global_trigger$"
1281
+ event_target_name = "$event_target_name$"
1282
+ number = 7
1283
+ }
1284
+ pick_best_province = {
1285
+ scale = "$scale$"
1286
+ scope = $scope$
1287
+ global_trigger = "$global_trigger$"
1288
+ event_target_name = "$event_target_name$"
1289
+ number = 8
1290
+ }
1291
+ pick_best_province = {
1292
+ scale = "$scale$"
1293
+ scope = $scope$
1294
+ global_trigger = "$global_trigger$"
1295
+ event_target_name = "$event_target_name$"
1296
+ number = 9
1297
+ }
1298
+ pick_best_province = {
1299
+ scale = "$scale$"
1300
+ scope = $scope$
1301
+ global_trigger = "$global_trigger$"
1302
+ event_target_name = "$event_target_name$"
1303
+ number = 10
1304
+ }
1305
+ }
1306
+ ]
1307
+ $scope$ = {
1308
+ limit = {
1309
+ has_province_flag = $event_target_name$_exclude
1310
+ }
1311
+ clr_province_flag = $event_target_name$_exclude
1312
+ }
1313
+ }
1314
+ }
1315
+
1316
+ pick_best_province = {
1317
+ $scope$ = {
1318
+ limit = {
1319
+ [[global_trigger] $global_trigger$ ]
1320
+ NOT = { has_province_flag = $event_target_name$_exclude }
1321
+ }
1322
+ save_event_target_as = $event_target_name$_$number$
1323
+ }
1324
+ $scope$ = {
1325
+ limit = {
1326
+ [[global_trigger] $global_trigger$ ]
1327
+ $scale$ = event_target:$event_target_name$_$number$
1328
+ NOT = { has_province_flag = $event_target_name$_exclude }
1329
+ }
1330
+ save_event_target_as = $event_target_name$_$number$
1331
+ }
1332
+ event_target:$event_target_name$_$number$ = {
1333
+ set_province_flag = $event_target_name$_exclude
1334
+ }
1335
+ }
1336
+
1337
+ create_general_with_pips = {
1338
+ create_general = {
1339
+ tradition = $tradition$
1340
+ [[add_fire] add_fire = $add_fire$ ]
1341
+ [[add_shock] add_shock = $add_shock$ ]
1342
+ [[add_manuever] add_manuever = $add_manuever$ ]
1343
+ [[add_siege] add_siege = $add_siege$ ]
1344
+ [[name] name = "$name$" ]
1345
+ [[culture] culture = $culture$ ]
1346
+ }
1347
+ custom_tooltip = ME_GENERAL_$add_fire$_$add_shock$_$add_manuever$_$add_siege$
1348
+ }
1349
+
1350
+ mission_give_province_claims = {
1351
+ $id$ = {
1352
+ if = {
1353
+ limit = {
1354
+ NOT = { is_core = $tag$ }
1355
+ NOT = { is_permanent_claim = $tag$ }
1356
+ }
1357
+ add_permanent_claim = $tag$
1358
+ }
1359
+ }
1360
+ }
1361
+
1362
+ mission_give_area_claims = {
1363
+ $group$ = {
1364
+ limit = {
1365
+ NOT = { is_core = $tag$ }
1366
+ NOT = { is_permanent_claim = $tag$ }
1367
+ }
1368
+ add_permanent_claim = $tag$
1369
+ }
1370
+ }
1371
+
1372
+ give_claims = {
1373
+ [[province]
1374
+ mission_give_province_claims = { id = $province$ tag = ROOT }
1375
+ ]
1376
+ [[id]
1377
+ mission_give_province_claims = { id = $id$ tag = ROOT }
1378
+ ]
1379
+ [[area]
1380
+ mission_give_area_claims = { group = $area$ tag = ROOT }
1381
+ ]
1382
+ [[region]
1383
+ mission_give_area_claims = { group = $region$ tag = ROOT }
1384
+ ]
1385
+
1386
+ }
1387
+
1388
+ add_power_projection_mission = {
1389
+ add_power_projection = {
1390
+ type = mission_rewards_power_projection
1391
+ amount = $amount$
1392
+ }
1393
+ }
1394
+
1395
+ country_event_with_effect_insight = {
1396
+ country_event = {
1397
+ id = $id$
1398
+ [[days] days = $days$]
1399
+ [[random] random = $random$]
1400
+ [[tooltip] tooltip = $tooltip$]
1401
+ }
1402
+ custom_tooltip = EVENT_INSIGHT_INTRO
1403
+ tooltip = {
1404
+ $effect$
1405
+ }
1406
+ }
1407
+
1408
+ country_event_with_option_insight = {
1409
+ country_event = {
1410
+ id = $id$
1411
+ [[days] days = $days$]
1412
+ [[random] random = $random$]
1413
+ [[tooltip] tooltip = $tooltip$]
1414
+ }
1415
+ custom_tooltip = EVENT_INSIGHT_INTRO
1416
+ custom_tooltip = EVENT_INSIGHT_OPT_1
1417
+ tooltip = {
1418
+ $option_1$
1419
+ }
1420
+ [[option_2]
1421
+ custom_tooltip = EVENT_INSIGHT_OPT_2
1422
+ tooltip = {
1423
+ $option_2$
1424
+ }
1425
+ ]
1426
+ [[option_3]
1427
+ custom_tooltip = EVENT_INSIGHT_OPT_3
1428
+ tooltip = {
1429
+ $option_3$
1430
+ }
1431
+ ]
1432
+ [[option_4]
1433
+ custom_tooltip = EVENT_INSIGHT_OPT_4
1434
+ tooltip = {
1435
+ $option_4$
1436
+ }
1437
+ ]
1438
+ [[option_5]
1439
+ custom_tooltip = EVENT_INSIGHT_OPT_5
1440
+ tooltip = {
1441
+ $option_5$
1442
+ }
1443
+ ]
1444
+ }
1445
+
1446
+ ######################################
1447
+ # Branching Missions Preview Effects #
1448
+ ######################################
1449
+ enable_branching_mission_review_of_batch = {
1450
+ if = {
1451
+ limit = { not = { has_country_flag = has_batch_1_active } }
1452
+ set_country_flag = has_batch_1_active
1453
+ set_country_flag = can_choose_$key$_1_branching_missions
1454
+ }
1455
+ else_if = {
1456
+ limit = { not = { has_country_flag = has_batch_2_active } }
1457
+ set_country_flag = has_batch_2_active
1458
+ set_country_flag = can_choose_$key$_2_branching_missions
1459
+ }
1460
+ else_if = {
1461
+ limit = { not = { has_country_flag = has_batch_3_active } }
1462
+ set_country_flag = has_batch_3_active
1463
+ set_country_flag = can_choose_$key$_3_branching_missions
1464
+ }
1465
+ else = {
1466
+ log = "Too many mission batches active at the same time. Make sure that any given moment only 3 batches are active to preview"
1467
+ }
1468
+ }
1469
+ enable_branching_mission_review = {
1470
+ if = {
1471
+ limit = { ai = yes }
1472
+ country_event = { id = $ai_event_id$ }
1473
+ }
1474
+ else = {
1475
+ custom_tooltip = BYZ_unlock_branches_decision
1476
+ hidden_effect = {
1477
+ enable_branching_mission_review_of_batch = { key = $key$ }
1478
+ change_variable = {
1479
+ which = can_preview_missions_var
1480
+ value = 1
1481
+ }
1482
+ }
1483
+ }
1484
+ }
1485
+ enable_branching_mission_review_without_ai = {
1486
+ custom_tooltip = BYZ_unlock_branches_decision
1487
+ hidden_effect = {
1488
+ enable_branching_mission_review_of_batch = { key = $key$ }
1489
+ change_variable = {
1490
+ which = can_preview_missions_var
1491
+ value = 1
1492
+ }
1493
+ }
1494
+ }
1495
+
1496
+ select_current_missions_MAL = {} #Empty on purpose, preview system only implemented for the sake of completion
1497
+ select_current_missions_SON = {
1498
+ if = {
1499
+ limit = { has_country_flag = son_islamic_focus }
1500
+ hidden_effect = { clr_country_flag = son_tolerance_focus }
1501
+ add_estate_loyalty = {
1502
+ estate = estate_church
1503
+ loyalty = 10
1504
+ }
1505
+ add_estate_loyalty = {
1506
+ estate = estate_nobles
1507
+ loyalty = -10
1508
+ }
1509
+ add_estate_loyalty = {
1510
+ estate = estate_dhimmi
1511
+ loyalty = -10
1512
+ }
1513
+ }
1514
+ if = {
1515
+ limit = { has_country_flag = son_tolerance_focus }
1516
+ hidden_effect = { clr_country_flag = son_islamic_focus }
1517
+ add_estate_loyalty = {
1518
+ estate = estate_church
1519
+ loyalty = -10
1520
+ }
1521
+ add_estate_loyalty = {
1522
+ estate = estate_nobles
1523
+ loyalty = 10
1524
+ }
1525
+ add_estate_loyalty = {
1526
+ estate = estate_dhimmi
1527
+ loyalty = 10
1528
+ }
1529
+ }
1530
+ }
1531
+ select_current_missions_KON = {} #Empty on purpose, preview system only implemented for the sake of completion
1532
+ select_scandinavian_religion_mission_effect = {
1533
+ if = {
1534
+ limit = { has_country_flag = sca_unlock_catholic_missions }
1535
+ if = {
1536
+ limit = { NOT = { religion = catholic } }
1537
+ add_stability = -2
1538
+ custom_tooltip = flavor_sca.1.a.tt
1539
+ if = {
1540
+ limit = {
1541
+ NOT = { religion = coptic }
1542
+ NOT = { religion = orthodox }
1543
+ }
1544
+ hidden_effect = {
1545
+ every_known_country = {
1546
+ limit = {
1547
+ religion = ROOT
1548
+ }
1549
+ add_opinion = {
1550
+ who = ROOT
1551
+ modifier = swe_abandoned_the_reformation
1552
+ }
1553
+ }
1554
+ }
1555
+ }
1556
+ else = {
1557
+ hidden_effect = {
1558
+ every_known_country = {
1559
+ limit = {
1560
+ religion = ROOT
1561
+ }
1562
+ add_opinion = {
1563
+ who = ROOT
1564
+ modifier = swe_betrayed_our_faith
1565
+ }
1566
+ }
1567
+ }
1568
+ }
1569
+ change_religion = catholic
1570
+ capital_scope = {
1571
+ change_religion = catholic
1572
+ }
1573
+ random_owned_province = {
1574
+ limit = {
1575
+ region = scandinavia_region
1576
+ NOT = { religion = catholic }
1577
+ }
1578
+ change_religion = catholic
1579
+ }
1580
+ }
1581
+ }
1582
+ if = {
1583
+ limit = { has_country_flag = sca_unlock_protestant_missions }
1584
+ if = {
1585
+ limit = { religion = catholic }
1586
+ add_stability = -2
1587
+ custom_tooltip = flavor_sca.1.a.tt
1588
+ hidden_effect = {
1589
+ every_known_country = {
1590
+ limit = {
1591
+ religion = ROOT
1592
+ }
1593
+ add_opinion = {
1594
+ who = ROOT
1595
+ modifier = swe_betrayed_the_holy_see
1596
+ }
1597
+ }
1598
+ }
1599
+ change_religion = protestant
1600
+ capital_scope = {
1601
+ change_religion = protestant
1602
+ }
1603
+ random_owned_province = {
1604
+ limit = {
1605
+ region = scandinavia_region
1606
+ religion = catholic
1607
+ }
1608
+ change_religion = protestant
1609
+ }
1610
+ }
1611
+ else = {
1612
+ capital_scope = {
1613
+ change_religion = ROOT
1614
+ }
1615
+ random_owned_province = {
1616
+ limit = {
1617
+ region = scandinavia_region
1618
+ NOT = { religion = ROOT }
1619
+ }
1620
+ change_religion = ROOT
1621
+ }
1622
+ }
1623
+ }
1624
+ if = {
1625
+ limit = { has_country_flag = sca_unlock_humanist_missions }
1626
+ custom_tooltip = flavor_sca.1.d.tt
1627
+ hidden_effect = {
1628
+ every_known_country = {
1629
+ limit = {
1630
+ religion_group = christian
1631
+ NOT = { religion = orthodox }
1632
+ NOT = { religion = coptic }
1633
+ }
1634
+ add_opinion = {
1635
+ who = ROOT
1636
+ modifier = swe_is_not_for_us
1637
+ }
1638
+ }
1639
+ }
1640
+ }
1641
+ if = {
1642
+ limit = { has_country_flag = sca_unlock_norse_missions }
1643
+ add_army_tradition = 5
1644
+ }
1645
+ }
1646
+ select_current_missions_SWE = {
1647
+ select_scandinavian_religion_mission_effect = yes
1648
+ }
1649
+ select_current_missions_DAN = {
1650
+ select_scandinavian_religion_mission_effect = yes
1651
+ }
1652
+ select_current_missions_NOR = {
1653
+ select_scandinavian_religion_mission_effect = yes
1654
+ }
1655
+ select_current_missions_TEU = {
1656
+ if = {
1657
+ limit = { has_country_flag = teu_prussian_path }
1658
+ hidden_effect = {
1659
+ clr_country_flag = teu_crusader_path
1660
+ if = {
1661
+ limit = {
1662
+ has_country_flag = formed_prussia_flag
1663
+ NOT = { tag = PRU }
1664
+ NOT = { was_tag = PRU }
1665
+ }
1666
+ clr_country_flag = formed_prussia_flag
1667
+ }
1668
+ }
1669
+ }
1670
+ if = {
1671
+ limit = { has_country_flag = teu_crusader_path }
1672
+ hidden_effect = {
1673
+ clr_country_flag = teu_prussian_path
1674
+ clr_country_flag = teu_diplomacy_hre_path
1675
+ clr_country_flag = teu_conquest_hre_path
1676
+ set_country_flag = formed_prussia_flag
1677
+ }
1678
+ if = {
1679
+ limit = { has_mission = teu_defeat_the_poles }
1680
+ hidden_effect = {
1681
+ if = {
1682
+ limit = {
1683
+ has_mission = teu_crusader_mil_reform_1
1684
+ NOT = { mission_completed = teu_crusader_mil_reform_1 }
1685
+ }
1686
+ set_country_flag = teu_crusader_battle_counter
1687
+ }
1688
+ else = {
1689
+ clr_country_flag = teu_crusader_battle_counter
1690
+ }
1691
+ }
1692
+ }
1693
+ custom_tooltip = flavor_teu.10.b.ct
1694
+ if = {
1695
+ limit = { is_part_of_hre = yes }
1696
+ set_in_empire = no
1697
+ }
1698
+ samogitia_area = {
1699
+ limit = {
1700
+ NOT = { is_core = ROOT }
1701
+ NOT = { is_permanent_claim = ROOT }
1702
+ }
1703
+ add_permanent_claim = ROOT
1704
+ }
1705
+ lithuania_area = {
1706
+ limit = {
1707
+ NOT = { is_core = ROOT }
1708
+ NOT = { is_permanent_claim = ROOT }
1709
+ }
1710
+ add_permanent_claim = ROOT
1711
+ }
1712
+ mazovia_area = {
1713
+ limit = {
1714
+ NOT = { is_core = ROOT }
1715
+ NOT = { is_permanent_claim = ROOT }
1716
+ }
1717
+ add_permanent_claim = ROOT
1718
+ }
1719
+ malopolska_area = {
1720
+ limit = {
1721
+ NOT = { is_core = ROOT }
1722
+ NOT = { is_permanent_claim = ROOT }
1723
+ }
1724
+ add_permanent_claim = ROOT
1725
+ }
1726
+ central_poland_area = {
1727
+ limit = {
1728
+ NOT = { is_core = ROOT }
1729
+ NOT = { is_permanent_claim = ROOT }
1730
+ }
1731
+ add_permanent_claim = ROOT
1732
+ }
1733
+ }
1734
+ }
1735
+ select_current_missions_TEU_PRU = {
1736
+ if = {
1737
+ limit = { has_country_flag = teu_diplomacy_hre_path }
1738
+ hidden_effect = {
1739
+ clr_country_flag = teu_conquest_hre_path
1740
+ clr_country_flag = teu_kingdom_prussia_path
1741
+ clr_country_flag = teu_joined_the_hre
1742
+ }
1743
+ if = {
1744
+ limit = {
1745
+ is_part_of_hre = no
1746
+ hre_size = 1
1747
+ }
1748
+ set_in_empire = yes
1749
+ emperor = { add_imperial_influence = 10 }
1750
+ }
1751
+ if = {
1752
+ limit = { tag = TEU }
1753
+ country_event = { id = flavor_teu.34 }
1754
+ }
1755
+ if = {
1756
+ limit = { exists = BRA }
1757
+ add_casus_belli = {
1758
+ type = cb_vassalize_mission
1759
+ target = BRA
1760
+ months = 240
1761
+ }
1762
+ }
1763
+ mittelmark_area = {
1764
+ limit = {
1765
+ NOT = { is_core = ROOT }
1766
+ NOT = { is_permanent_claim = ROOT }
1767
+ }
1768
+ add_permanent_claim = ROOT
1769
+ }
1770
+ neumark_area = {
1771
+ limit = {
1772
+ NOT = { is_core = ROOT }
1773
+ NOT = { is_permanent_claim = ROOT }
1774
+ }
1775
+ add_permanent_claim = ROOT
1776
+ }
1777
+ }
1778
+ if = {
1779
+ limit = { has_country_flag = teu_conquest_hre_path }
1780
+ if = {
1781
+ limit = {
1782
+ is_part_of_hre = no
1783
+ hre_size = 1
1784
+ }
1785
+ set_in_empire = yes
1786
+ emperor = { add_imperial_influence = 10 }
1787
+ }
1788
+ hidden_effect = {
1789
+ set_country_flag = teu_conquest_hre_path
1790
+ clr_country_flag = teu_diplomacy_hre_path
1791
+ clr_country_flag = teu_kingdom_prussia_path
1792
+ clr_country_flag = teu_joined_the_hre
1793
+ }
1794
+ if = {
1795
+ limit = { tag = TEU }
1796
+ country_event = { id = flavor_teu.34 }
1797
+ }
1798
+ mittelmark_area = {
1799
+ limit = {
1800
+ NOT = { is_core = ROOT }
1801
+ NOT = { is_permanent_claim = ROOT }
1802
+ }
1803
+ add_permanent_claim = ROOT
1804
+ }
1805
+ neumark_area = {
1806
+ limit = {
1807
+ NOT = { is_core = ROOT }
1808
+ NOT = { is_permanent_claim = ROOT }
1809
+ }
1810
+ add_permanent_claim = ROOT
1811
+ }
1812
+ vorpommern_area = {
1813
+ limit = {
1814
+ NOT = { is_core = ROOT }
1815
+ NOT = { is_permanent_claim = ROOT }
1816
+ }
1817
+ add_permanent_claim = ROOT
1818
+ }
1819
+ hinter_pommern_area = {
1820
+ limit = {
1821
+ NOT = { is_core = ROOT }
1822
+ NOT = { is_permanent_claim = ROOT }
1823
+ }
1824
+ add_permanent_claim = ROOT
1825
+ }
1826
+ mecklenburg_area = {
1827
+ limit = {
1828
+ NOT = { is_core = ROOT }
1829
+ NOT = { is_permanent_claim = ROOT }
1830
+ }
1831
+ add_permanent_claim = ROOT
1832
+ }
1833
+ add_country_modifier = {
1834
+ name = teu_pru_prussian_unification_wars
1835
+ duration = 9125
1836
+ }
1837
+ }
1838
+ if = {
1839
+ limit = { has_country_flag = teu_kingdom_prussia_path }
1840
+ if = {
1841
+ limit = { is_part_of_hre = yes }
1842
+ set_in_empire = no
1843
+ }
1844
+ add_prestige = 50
1845
+ if = {
1846
+ limit = { has_country_flag = teu_is_allowed_to_stay_in_the_hre }
1847
+ reverse_add_opinion = {
1848
+ who = emperor
1849
+ modifier = hre_country_left
1850
+ }
1851
+ }
1852
+ hidden_effect = {
1853
+ clr_country_flag = teu_diplomacy_hre_path
1854
+ clr_country_flag = teu_conquest_hre_path
1855
+ clr_country_flag = teu_joined_the_hre
1856
+ }
1857
+ samogitia_area = {
1858
+ limit = {
1859
+ NOT = { is_core = ROOT }
1860
+ NOT = { is_permanent_claim = ROOT }
1861
+ }
1862
+ add_permanent_claim = ROOT
1863
+ }
1864
+ lithuania_area = {
1865
+ limit = {
1866
+ NOT = { is_core = ROOT }
1867
+ NOT = { is_permanent_claim = ROOT }
1868
+ }
1869
+ add_permanent_claim = ROOT
1870
+ }
1871
+ mazovia_area = {
1872
+ limit = {
1873
+ NOT = { is_core = ROOT }
1874
+ NOT = { is_permanent_claim = ROOT }
1875
+ }
1876
+ add_permanent_claim = ROOT
1877
+ }
1878
+ malopolska_area = {
1879
+ limit = {
1880
+ NOT = { is_core = ROOT }
1881
+ NOT = { is_permanent_claim = ROOT }
1882
+ }
1883
+ add_permanent_claim = ROOT
1884
+ }
1885
+ central_poland_area = {
1886
+ limit = {
1887
+ NOT = { is_core = ROOT }
1888
+ NOT = { is_permanent_claim = ROOT }
1889
+ }
1890
+ add_permanent_claim = ROOT
1891
+ }
1892
+ }
1893
+ }
1894
+ select_current_missions_LIV = {
1895
+ if = {
1896
+ limit = {
1897
+ has_country_flag = liv_crusader_path
1898
+ }
1899
+ hidden_effect = {
1900
+ set_country_flag = formed_livonia_flag
1901
+ set_country_flag = formed_courland_flag
1902
+ }
1903
+ custom_tooltip = flavor_liv.1.b.ct
1904
+ lithuania_area = {
1905
+ limit = {
1906
+ NOT = { is_core = ROOT }
1907
+ NOT = { is_permanent_claim = ROOT }
1908
+ }
1909
+ add_permanent_claim = ROOT
1910
+ }
1911
+ samogitia_area = {
1912
+ limit = {
1913
+ NOT = { is_core = ROOT }
1914
+ NOT = { is_permanent_claim = ROOT }
1915
+ }
1916
+ add_permanent_claim = ROOT
1917
+ }
1918
+ karelia_area = {
1919
+ limit = {
1920
+ NOT = { is_core = ROOT }
1921
+ NOT = { is_permanent_claim = ROOT }
1922
+ }
1923
+ add_permanent_claim = ROOT
1924
+ }
1925
+ novgorod_area = {
1926
+ limit = {
1927
+ NOT = { is_core = ROOT }
1928
+ NOT = { is_permanent_claim = ROOT }
1929
+ }
1930
+ add_permanent_claim = ROOT
1931
+ }
1932
+ pskov_area = {
1933
+ limit = {
1934
+ NOT = { is_core = ROOT }
1935
+ NOT = { is_permanent_claim = ROOT }
1936
+ }
1937
+ add_permanent_claim = ROOT
1938
+ }
1939
+ }
1940
+ }
1941
+ select_current_missions_POL = {} #Empty on purpose, preview system only implemented for the sake of completion
1942
+ select_current_missions_TUR = {
1943
+ if = {
1944
+ limit = { has_country_flag = tur_chose_legalism }
1945
+ hidden_effect = {
1946
+ clr_country_flag = tur_chose_mysticism
1947
+ clr_country_flag = tur_non_muslim_path_flag
1948
+ }
1949
+ add_country_modifier = {
1950
+ name = tur_embraced_legalism_modifier
1951
+ duration = 18250
1952
+ }
1953
+ }
1954
+ if = {
1955
+ limit = { has_country_flag = tur_chose_mysticism }
1956
+ hidden_effect = {
1957
+ clr_country_flag = tur_chose_legalism
1958
+ clr_country_flag = tur_non_muslim_path_flag
1959
+ }
1960
+ add_country_modifier = {
1961
+ name = tur_embraced_mysticism_modifier
1962
+ duration = 18250
1963
+ }
1964
+ }
1965
+ if = {
1966
+ limit = { has_country_flag = tur_non_muslim_path_flag }
1967
+ hidden_effect = {
1968
+ clr_country_flag = tur_chose_legalism
1969
+ clr_country_flag = tur_chose_mysticism
1970
+ }
1971
+ add_country_modifier = {
1972
+ name = tur_end_of_the_caliphate_modifier
1973
+ duration = 18250
1974
+ }
1975
+ }
1976
+ }
1977
+ select_current_missions_MNG = {
1978
+ if = {
1979
+ limit = { has_country_flag = mng_dynamic_1 }
1980
+ clr_country_flag = mng_dynamic_2
1981
+ add_country_modifier = {
1982
+ name = haijin_policy_modifier
1983
+ duration = -1
1984
+ desc = until_we_complete_the_appropriate_missions_desc
1985
+ }
1986
+ }
1987
+ if = {
1988
+ limit = { has_country_flag = mng_dynamic_2 }
1989
+ clr_country_flag = mng_dynamic_1
1990
+ add_country_modifier = {
1991
+ name = haijin_policy_modifier
1992
+ duration = -1
1993
+ desc = until_we_complete_the_appropriate_missions_desc
1994
+ }
1995
+ }
1996
+ }
1997
+ select_current_missions_QNG = {
1998
+ if = {
1999
+ limit = { has_country_flag = qng_open_ports_flag }
2000
+ clr_country_flag = qng_close_ports_flag
2001
+ if = {
2002
+ limit = { has_reform = mercantilistic_approach_reform }
2003
+ add_government_reform = free_trade_reform
2004
+ }
2005
+ add_country_modifier = {
2006
+ name = qng_free_trade_modifier
2007
+ duration = 9125
2008
+ }
2009
+ }
2010
+ if = {
2011
+ limit = { has_country_flag = qng_close_ports_flag }
2012
+ clr_country_flag = qng_open_ports_flag
2013
+ if = {
2014
+ limit = { has_reform = free_trade_reform }
2015
+ add_government_reform = mercantilistic_approach_reform
2016
+ }
2017
+ add_country_modifier = {
2018
+ name = qng_mercantilism_modifier
2019
+ duration = -1
2020
+ }
2021
+ }
2022
+ }
2023
+ select_current_missions_GBR = {
2024
+ if = {
2025
+ limit = { has_country_flag = eng_took_gbr_branch }
2026
+ clr_country_flag = eng_took_ave_branch
2027
+ add_country_modifier = {
2028
+ name = gbr_isolation_policy
2029
+ duration = 9125
2030
+ }
2031
+ }
2032
+ if = {
2033
+ limit = { has_country_flag = eng_took_ave_branch }
2034
+ clr_country_flag = eng_took_gbr_branch
2035
+ if = {
2036
+ limit = {
2037
+ FRA = {
2038
+ is_subject = no
2039
+ }
2040
+ }
2041
+ add_casus_belli = {
2042
+ target = FRA
2043
+ type = cb_hundred_years_union
2044
+ months = 360
2045
+ }
2046
+ }
2047
+ ile_de_france_area = {
2048
+ limit = {
2049
+ NOT = { is_core = ROOT }
2050
+ NOT = { is_permanent_claim = ROOT }
2051
+ }
2052
+ add_permanent_claim = ROOT
2053
+ }
2054
+ champagne_area = {
2055
+ limit = {
2056
+ NOT = { is_core = ROOT }
2057
+ NOT = { is_permanent_claim = ROOT }
2058
+ }
2059
+ add_permanent_claim = ROOT
2060
+ }
2061
+ }
2062
+ }
2063
+ select_current_missions_FRA = {
2064
+ if = {
2065
+ limit = { has_country_flag = fra_chose_to_piss_off_pope_flag }
2066
+ add_country_modifier = {
2067
+ name = fra_italian_wars_modifier
2068
+ duration = 7300
2069
+ }
2070
+ piedmont_area = {
2071
+ limit = {
2072
+ NOT = { owned_by = ROOT }
2073
+ NOT = { is_core = ROOT }
2074
+ }
2075
+ add_permanent_claim = ROOT
2076
+ }
2077
+ liguria_area = {
2078
+ limit = {
2079
+ NOT = { owned_by = ROOT }
2080
+ NOT = { is_core = ROOT }
2081
+ }
2082
+ add_permanent_claim = ROOT
2083
+ }
2084
+ lombardy_area = {
2085
+ limit = {
2086
+ NOT = { owned_by = ROOT }
2087
+ NOT = { is_core = ROOT }
2088
+ }
2089
+ add_permanent_claim = ROOT
2090
+ }
2091
+ if = {
2092
+ limit = {
2093
+ NAP = { is_subject = no exists = yes }
2094
+ }
2095
+ add_casus_belli = {
2096
+ target = NAP
2097
+ type = cb_vassalize_mission
2098
+ months = 180
2099
+ }
2100
+ }
2101
+ else = {
2102
+ naples_area = {
2103
+ limit = {
2104
+ NOT = { owned_by = ROOT }
2105
+ NOT = { is_core = ROOT }
2106
+ is_empty = no
2107
+ }
2108
+ add_permanent_claim = ROOT
2109
+ }
2110
+ calabria_area = {
2111
+ limit = {
2112
+ NOT = { owned_by = ROOT }
2113
+ NOT = { is_core = ROOT }
2114
+ is_empty = no
2115
+ }
2116
+ add_permanent_claim = ROOT
2117
+ }
2118
+ apulia_area = {
2119
+ limit = {
2120
+ NOT = { owned_by = ROOT }
2121
+ NOT = { is_core = ROOT }
2122
+ is_empty = no
2123
+ }
2124
+ add_permanent_claim = ROOT
2125
+ }
2126
+ }
2127
+ }
2128
+ if = {
2129
+ limit = { has_country_flag = fra_papal_lap_dop_flag }
2130
+ add_country_modifier = {
2131
+ name = fra_resurgence_of_crusader_fervor_modifier
2132
+ duration = 9125
2133
+ }
2134
+ palestine_area = {
2135
+ limit = {
2136
+ NOT = { owned_by = ROOT }
2137
+ NOT = { is_core = ROOT }
2138
+ }
2139
+ add_permanent_claim = ROOT
2140
+ }
2141
+ }
2142
+ }
2143
+ select_current_missions_FRA_HRE = {
2144
+ if = { #Special case when the HRE is already dissolved
2145
+ limit = {
2146
+ not = { hre_size = 1 }
2147
+ }
2148
+ add_country_modifier = {
2149
+ name = fra_triumph_over_austria_modifier
2150
+ duration = -1
2151
+ }
2152
+ add_dip_power = 200
2153
+ clr_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2154
+ set_country_flag = fra_fufujoni_flag
2155
+ swap_non_generic_missions = yes
2156
+ }
2157
+ else = {
2158
+ if = {
2159
+ limit = { has_country_flag = fra_fufujoni_flag }
2160
+ clr_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2161
+ add_country_modifier = {
2162
+ name = fra_war_east_modifier
2163
+ duration = 5475
2164
+ }
2165
+ if = {
2166
+ limit = { hre_size = 1 }
2167
+ custom_tooltip = fra_enable_war_on_the_empire_cb_tt
2168
+ hidden_effect = { set_country_flag = fra_enable_war_on_the_empire_cb_flag }
2169
+ }
2170
+ }
2171
+ if = {
2172
+ limit = {
2173
+ or = {
2174
+ has_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2175
+ is_emperor = yes
2176
+ }
2177
+ }
2178
+ clr_country_flag = fra_fufujoni_flag
2179
+ add_country_modifier = {
2180
+ name = fra_charlemagne_legacy_modifier
2181
+ duration = 7300
2182
+ }
2183
+ every_elector = {
2184
+ limit = {
2185
+ has_opinion = {
2186
+ who = ROOT
2187
+ value = 0
2188
+ }
2189
+ }
2190
+ add_opinion = {
2191
+ who = ROOT
2192
+ modifier = fra_charlemagne_legacy_opinion_modifier
2193
+ }
2194
+ }
2195
+ add_power_projection = {
2196
+ type = mission_rewards_power_projection
2197
+ amount = 25
2198
+ }
2199
+ if = {
2200
+ limit = {
2201
+ not = { has_country_flag = fra_shed_the_blood_of_the_saxon_man_flag }
2202
+ is_emperor = yes
2203
+ }
2204
+ set_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2205
+ custom_tooltip = fra_charlemagne_legacy_tt
2206
+ swap_non_generic_missions = yes #Another special for the moment France becomes Emperor before selecing any of the branching missions
2207
+ }
2208
+ }
2209
+ }
2210
+ }
2211
+ select_current_missions_JAP = {
2212
+ if = {
2213
+ limit = { has_country_flag = jap_mushashi_5_books_flag }
2214
+ clr_country_flag = jap_domineering_naval_focus_flag
2215
+ add_army_tradition = 10
2216
+ add_country_modifier = {
2217
+ name = jap_mushashi_5_books_modifier
2218
+ duration = -1
2219
+ }
2220
+ }
2221
+ if = {
2222
+ limit = { has_country_flag = jap_domineering_naval_focus_flag }
2223
+ clr_country_flag = jap_mushashi_5_books_flag
2224
+ add_navy_tradition = 20
2225
+ add_country_modifier = {
2226
+ name = jap_domineering_naval_focus_modifier
2227
+ duration = -1
2228
+ }
2229
+ }
2230
+ }
2231
+ select_current_missions_JAP_RELI = {
2232
+ if = {
2233
+ limit = { has_country_flag = christianity_defeated_flag }
2234
+ clr_country_flag = a_kirishitan_realm
2235
+ if = {
2236
+ limit = { has_country_flag = significant_christian_presence_flag }
2237
+ set_estate_privilege = estate_church_japanese_christian_communities_privilege
2238
+ }
2239
+ else = {
2240
+ add_country_modifier = {
2241
+ name = jap_shinto_warriors_modifier
2242
+ duration = -1
2243
+ }
2244
+ }
2245
+ }
2246
+ if = {
2247
+ limit = { has_country_flag = a_kirishitan_realm }
2248
+ clr_country_flag = christianity_defeated_flag
2249
+ override_country_name = KRJ
2250
+ set_country_flag = is_KRJ_flag
2251
+ set_country_flag = has_overriden_name_flag
2252
+ add_country_modifier = {
2253
+ name = jap_protectors_east_catholicism
2254
+ duration = 10950
2255
+ }
2256
+ }
2257
+ }
2258
+ select_current_missions_BYZ = {} #Empty, nothing should happen
2259
+ select_current_missions_PER = {
2260
+ if = {
2261
+ limit = {
2262
+ OR = {
2263
+ has_country_flag = per_shia_missions
2264
+ has_country_flag = per_sunni_missions
2265
+ }
2266
+ }
2267
+ country_event = { id = flavor_per.34 }
2268
+ }
2269
+ if = {
2270
+ limit = { has_country_flag = per_zoroastrian_missions }
2271
+ if = {
2272
+ limit = { NOT = { religion_group = zoroastrian_group } }
2273
+ country_event = { id = flavor_per.35 }
2274
+ }
2275
+ else = {
2276
+ change_estate_land_share = { estate = estate_church share = -5 }
2277
+ }
2278
+ }
2279
+ }
2280
+
2281
+ select_current_missions = {
2282
+ hidden_effect = {
2283
+ clr_country_flag = can_choose_$key$_1_branching_missions
2284
+ clr_country_flag = can_choose_$key$_2_branching_missions
2285
+ clr_country_flag = can_choose_$key$_3_branching_missions
2286
+ change_variable = {
2287
+ which = can_preview_missions_var
2288
+ value = -1
2289
+ }
2290
+ }
2291
+ select_current_missions_$key$ = yes
2292
+ }
2293
+ select_current_branch = {
2294
+ custom_tooltip = BYZ_end_preview
2295
+ hidden_effect = { clr_country_flag = has_batch_$batch$_active }
2296
+ #Origins
2297
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ } } select_current_missions = { key = MAL } }
2298
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ } } select_current_missions = { key = SON } }
2299
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ } } select_current_missions = { key = KON } }
2300
+ #Lions of the North
2301
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } } select_current_missions = { key = SWE } }
2302
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } } select_current_missions = { key = DAN } }
2303
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } } select_current_missions = { key = NOR } }
2304
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ } } select_current_missions = { key = TEU } }
2305
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } } select_current_missions = { key = TEU_PRU } }
2306
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ } } select_current_missions = { key = LIV } }
2307
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ } } select_current_missions = { key = POL } }
2308
+ #Domination
2309
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } } select_current_missions = { key = TUR } }
2310
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ } } select_current_missions = { key = MNG } }
2311
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ } } select_current_missions = { key = QNG } }
2312
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ } } select_current_missions = { key = JAP } }
2313
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ } } select_current_missions = { key = JAP_RELI } }
2314
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ } } select_current_missions = { key = FRA } }
2315
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ } } select_current_missions = { key = FRA_HRE } }
2316
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ } } select_current_missions = { key = GBR } }
2317
+ #King of Kings
2318
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ } } select_current_missions = { key = BYZ } }
2319
+ if = { limit = { can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ } } select_current_missions = { key = PER } }
2320
+ }
2321
+
2322
+ clear_all_branching_flags = {
2323
+ #Origins
2324
+ #MAL
2325
+ if = {
2326
+ limit = { can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ } }
2327
+ clr_country_flag = mal_decide_for_conversion
2328
+ clr_country_flag = mal_decide_for_tolerance
2329
+ }
2330
+ #SON
2331
+ if = {
2332
+ limit = { can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ } }
2333
+ clr_country_flag = son_islamic_focus
2334
+ clr_country_flag = son_tolerance_focus
2335
+ }
2336
+ #KON
2337
+ if = {
2338
+ limit = { can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ } }
2339
+ clr_country_flag = kon_picked_fetishism
2340
+ clr_country_flag = kon_picked_side_with_europeans
2341
+ }
2342
+ #Lions of the North
2343
+ #SWE
2344
+ if = {
2345
+ limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } }
2346
+ clr_country_flag = sca_unlock_catholic_missions
2347
+ clr_country_flag = sca_unlock_protestant_missions
2348
+ clr_country_flag = sca_unlock_norse_missions
2349
+ clr_country_flag = sca_unlock_humanist_missions
2350
+ }
2351
+ #DAN
2352
+ if = {
2353
+ limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } }
2354
+ clr_country_flag = sca_unlock_catholic_missions
2355
+ clr_country_flag = sca_unlock_protestant_missions
2356
+ clr_country_flag = sca_unlock_norse_missions
2357
+ clr_country_flag = sca_unlock_humanist_missions
2358
+ }
2359
+ #NOR
2360
+ if = {
2361
+ limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } }
2362
+ clr_country_flag = sca_unlock_catholic_missions
2363
+ clr_country_flag = sca_unlock_protestant_missions
2364
+ clr_country_flag = sca_unlock_norse_missions
2365
+ clr_country_flag = sca_unlock_humanist_missions
2366
+ }
2367
+ #TEU
2368
+ if = {
2369
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ } }
2370
+ clr_country_flag = teu_prussian_path
2371
+ clr_country_flag = teu_crusader_path
2372
+ }
2373
+ #TEU-PRU
2374
+ if = {
2375
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } }
2376
+ clr_country_flag = teu_conquest_hre_path
2377
+ clr_country_flag = teu_diplomacy_hre_path
2378
+ clr_country_flag = teu_kingdom_prussia_path
2379
+ }
2380
+ #LIV
2381
+ if = {
2382
+ limit = { can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ } }
2383
+ clr_country_flag = liv_livonian_path
2384
+ clr_country_flag = liv_crusader_path
2385
+ }
2386
+ #POL
2387
+ if = {
2388
+ limit = { can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ } }
2389
+ clr_country_flag = pol_chose_pu_flag
2390
+ clr_country_flag = pol_denied_pu_flag
2391
+ }
2392
+ #Domination
2393
+ #TUR
2394
+ if = {
2395
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
2396
+ clr_country_flag = tur_chose_legalism
2397
+ clr_country_flag = tur_chose_mysticism
2398
+ clr_country_flag = tur_non_muslim_path_flag
2399
+ }
2400
+ #MNG
2401
+ if = {
2402
+ limit = { can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ } }
2403
+ clr_country_flag = mng_dynamic_1
2404
+ clr_country_flag = mng_dynamic_2
2405
+ }
2406
+ #QNG
2407
+ if = {
2408
+ limit = { can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ } }
2409
+ clr_country_flag = qng_open_ports_flag
2410
+ clr_country_flag = qng_close_ports_flag
2411
+ }
2412
+ #JAP
2413
+ if = {
2414
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ } }
2415
+ clr_country_flag = jap_mushashi_5_books_flag
2416
+ clr_country_flag = jap_domineering_naval_focus_flag
2417
+ }
2418
+ #JAP_RELI
2419
+ if = {
2420
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ } }
2421
+ clr_country_flag = christianity_defeated_flag
2422
+ clr_country_flag = a_kirishitan_realm
2423
+ }
2424
+ #FRA
2425
+ if = {
2426
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ } }
2427
+ clr_country_flag = fra_chose_to_piss_off_pope_flag
2428
+ clr_country_flag = fra_papal_lap_dop_flag
2429
+ }
2430
+ #FRA_HRE
2431
+ if = {
2432
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ } }
2433
+ clr_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2434
+ clr_country_flag = fra_fufujoni_flag
2435
+ }
2436
+ #GBR
2437
+ if = {
2438
+ limit = { can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ } }
2439
+ clr_country_flag = eng_took_gbr_branch
2440
+ clr_country_flag = eng_took_ave_branch
2441
+ }
2442
+ #King of Kings
2443
+ #BYZ
2444
+ if = {
2445
+ limit = { can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ } }
2446
+ clr_country_flag = BYZ_centralized
2447
+ clr_country_flag = BYZ_decentralized
2448
+ }
2449
+ #PER
2450
+ if = {
2451
+ limit = { can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ } }
2452
+ clr_country_flag = per_shia_missions
2453
+ clr_country_flag = per_sunni_missions
2454
+ clr_country_flag = per_zoroastrian_missions
2455
+ }
2456
+ }
2457
+
2458
+ preview_mission_branch_1 = {
2459
+ #Origins
2460
+ #MAL
2461
+ if = {
2462
+ limit = { can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ } }
2463
+ set_country_flag = mal_decide_for_conversion
2464
+ custom_tooltip = MAL_preview_conversion
2465
+ }
2466
+ #SON
2467
+ if = {
2468
+ limit = { can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ } }
2469
+ set_country_flag = son_islamic_focus
2470
+ custom_tooltip = SON_preview_islamic
2471
+ }
2472
+ #KON
2473
+ if = {
2474
+ limit = { can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ } }
2475
+ set_country_flag = kon_picked_fetishism
2476
+ custom_tooltip = KON_preview_fetishism
2477
+ }
2478
+ #Lions of the North
2479
+ #SWE
2480
+ if = {
2481
+ limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } }
2482
+ set_country_flag = sca_unlock_catholic_missions
2483
+ custom_tooltip = SCA_preview_catholic
2484
+ }
2485
+ #DAN
2486
+ if = {
2487
+ limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } }
2488
+ set_country_flag = sca_unlock_catholic_missions
2489
+ custom_tooltip = SCA_preview_catholic
2490
+ }
2491
+ #NOR
2492
+ if = {
2493
+ limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } }
2494
+ set_country_flag = sca_unlock_catholic_missions
2495
+ custom_tooltip = SCA_preview_catholic
2496
+ }
2497
+ #TEU
2498
+ if = {
2499
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ } }
2500
+ set_country_flag = teu_prussian_path
2501
+ custom_tooltip = TEU_preview_prussian
2502
+ }
2503
+ #TEU_PRU
2504
+ if = {
2505
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } }
2506
+ set_country_flag = teu_conquest_hre_path
2507
+ custom_tooltip = TEU_PRU_preview_hre_conquest
2508
+ }
2509
+ #LIV
2510
+ if = {
2511
+ limit = { can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ } }
2512
+ set_country_flag = liv_livonian_path
2513
+ custom_tooltip = LIV_preview_livonian
2514
+ }
2515
+ #POL
2516
+ if = {
2517
+ limit = { can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ } }
2518
+ set_country_flag = pol_chose_pu_flag
2519
+ custom_tooltip = POL_preview_lith
2520
+ }
2521
+ #Domination
2522
+ #TUR
2523
+ if = {
2524
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
2525
+ set_country_flag = tur_chose_legalism
2526
+ custom_tooltip = TUR_preview_legalism
2527
+ }
2528
+ #MNG
2529
+ if = {
2530
+ limit = { can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ } }
2531
+ set_country_flag = mng_dynamic_1
2532
+ custom_tooltip = MNG_preview_improve_haijin
2533
+ }
2534
+ #QNG
2535
+ if = {
2536
+ limit = { can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ } }
2537
+ set_country_flag = qng_open_ports_flag
2538
+ custom_tooltip = QNG_preview_open_ports
2539
+ }
2540
+ #GBR
2541
+ if = {
2542
+ limit = { can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ } }
2543
+ set_country_flag = eng_took_gbr_branch
2544
+ custom_tooltip = ENG_preview_gbr_branch
2545
+ }
2546
+ #FRA
2547
+ if = {
2548
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ } }
2549
+ set_country_flag = fra_chose_to_piss_off_pope_flag
2550
+ custom_tooltip = FRA_preview_italian_wars
2551
+ }
2552
+ #FRA_HRE
2553
+ if = {
2554
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ } }
2555
+ set_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
2556
+ custom_tooltip = FRA_preview_charlemagnes_legacy
2557
+ }
2558
+ #JAP
2559
+ if = {
2560
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ } }
2561
+ set_country_flag = jap_mushashi_5_books_flag
2562
+ custom_tooltip = JAP_preview_mushashi_5_books
2563
+ }
2564
+ #JAP_RELI
2565
+ if = {
2566
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ } }
2567
+ set_country_flag = christianity_defeated_flag
2568
+ custom_tooltip = JAP_preview_christianity_defeated
2569
+ }
2570
+ #King of Kings
2571
+ #BYZ
2572
+ if = {
2573
+ limit = { can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ } }
2574
+ set_country_flag = BYZ_centralized
2575
+ custom_tooltip = BYZ_preview_centralized
2576
+ }
2577
+ #PER
2578
+ if = {
2579
+ limit = { can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ } }
2580
+ set_country_flag = per_shia_missions
2581
+ custom_tooltip = per_preview_shia_missions
2582
+ }
2583
+ }
2584
+ preview_mission_branch_2 = {
2585
+ #Origins
2586
+ #MAL
2587
+ if = {
2588
+ limit = { can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ } }
2589
+ set_country_flag = mal_decide_for_tolerance
2590
+ custom_tooltip = MAL_preview_tolerance
2591
+ }
2592
+ #SON
2593
+ if = {
2594
+ limit = { can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ } }
2595
+ set_country_flag = son_tolerance_focus
2596
+ custom_tooltip = SON_preview_tolerance
2597
+ }
2598
+ #KON
2599
+ if = {
2600
+ limit = { can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ } }
2601
+ set_country_flag = kon_picked_side_with_europeans
2602
+ custom_tooltip = KON_preview_christian
2603
+ }
2604
+ #Lions of the North
2605
+ #SWE
2606
+ if = {
2607
+ limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } }
2608
+ set_country_flag = sca_unlock_protestant_missions
2609
+ custom_tooltip = SCA_preview_protestant
2610
+ }
2611
+ #DAN
2612
+ if = {
2613
+ limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } }
2614
+ set_country_flag = sca_unlock_protestant_missions
2615
+ custom_tooltip = SCA_preview_protestant
2616
+ }
2617
+ #NOR
2618
+ if = {
2619
+ limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } }
2620
+ set_country_flag = sca_unlock_protestant_missions
2621
+ custom_tooltip = SCA_preview_protestant
2622
+ }
2623
+ #TEU
2624
+ if = {
2625
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ } }
2626
+ set_country_flag = teu_crusader_path
2627
+ custom_tooltip = TEU_preview_crusader
2628
+ }
2629
+ #TEU_PRU
2630
+ if = {
2631
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } }
2632
+ if = {
2633
+ limit = { hre_size = 1 }
2634
+ set_country_flag = teu_diplomacy_hre_path
2635
+ custom_tooltip = TEU_PRU_preview_hre_diplomacy
2636
+ }
2637
+ else = {
2638
+ set_country_flag = teu_kingdom_prussia_path
2639
+ custom_tooltip = TEU_PRU_preview_prussian_kingdom
2640
+ }
2641
+ }
2642
+ #LIV
2643
+ if = {
2644
+ limit = { can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ } }
2645
+ set_country_flag = liv_crusader_path
2646
+ custom_tooltip = LIV_preview_crusader
2647
+ }
2648
+ #POL
2649
+ if = {
2650
+ limit = { can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ } }
2651
+ set_country_flag = pol_denied_pu_flag
2652
+ custom_tooltip = POL_preview_hre
2653
+ }
2654
+ #Domination
2655
+ #TUR
2656
+ if = {
2657
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
2658
+ set_country_flag = tur_chose_mysticism
2659
+ custom_tooltip = TUR_preview_mysticism
2660
+ }
2661
+ #MNG
2662
+ if = {
2663
+ limit = { can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ } }
2664
+ set_country_flag = mng_dynamic_2
2665
+ custom_tooltip = MNG_preview_repeal_haijin
2666
+ }
2667
+ #QNG
2668
+ if = {
2669
+ limit = { can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ } }
2670
+ set_country_flag = qng_close_ports_flag
2671
+ custom_tooltip = QNG_preview_close_ports
2672
+ }
2673
+ #GBR
2674
+ if = {
2675
+ limit = { can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ } }
2676
+ set_country_flag = eng_took_ave_branch
2677
+ custom_tooltip = ENG_preview_ave_branch
2678
+ }
2679
+ #FRA
2680
+ if = {
2681
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ } }
2682
+ set_country_flag = fra_papal_lap_dop_flag
2683
+ custom_tooltip = FRA_preview_crusader_kings
2684
+ }
2685
+ #FRA_HRE
2686
+ if = {
2687
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ } }
2688
+ set_country_flag = fra_fufujoni_flag
2689
+ custom_tooltip = FRA_preview_kill_hre
2690
+ }
2691
+ #JAP
2692
+ if = {
2693
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ } }
2694
+ set_country_flag = jap_domineering_naval_focus_flag
2695
+ custom_tooltip = JAP_preview_domineering_naval_focus
2696
+ }
2697
+ #JAP_RELI
2698
+ if = {
2699
+ limit = { can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ } }
2700
+ set_country_flag = a_kirishitan_realm
2701
+ custom_tooltip = JAP_preview_a_kirishitan_realm
2702
+ }
2703
+ #King of Kings
2704
+ #BYZ
2705
+ if = {
2706
+ limit = { can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ } }
2707
+ set_country_flag = BYZ_decentralized
2708
+ custom_tooltip = BYZ_preview_decentralized
2709
+ }
2710
+ #PER
2711
+ if = {
2712
+ limit = { can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ } }
2713
+ set_country_flag = per_sunni_missions
2714
+ custom_tooltip = per_preview_sunni_missions
2715
+ }
2716
+ }
2717
+ preview_mission_branch_3 = {
2718
+ #Origins
2719
+ # none
2720
+ #Lions of the North
2721
+ #SWE
2722
+ if = {
2723
+ limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } }
2724
+ set_country_flag = sca_unlock_humanist_missions
2725
+ custom_tooltip = SCA_preview_humanist
2726
+ }
2727
+ #DAN
2728
+ if = {
2729
+ limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } }
2730
+ set_country_flag = sca_unlock_humanist_missions
2731
+ custom_tooltip = SCA_preview_humanist
2732
+ }
2733
+ #NOR
2734
+ if = {
2735
+ limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } }
2736
+ set_country_flag = sca_unlock_humanist_missions
2737
+ custom_tooltip = SCA_preview_humanist
2738
+ }
2739
+ #TEU_PRU
2740
+ if = {
2741
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } }
2742
+ set_country_flag = teu_kingdom_prussia_path
2743
+ custom_tooltip = TEU_PRU_preview_prussian_kingdom
2744
+ }
2745
+ #Domination
2746
+ #TUR
2747
+ if = {
2748
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
2749
+ set_country_flag = tur_non_muslim_path_flag
2750
+ custom_tooltip = TUR_preview_non_muslim_path
2751
+ }
2752
+ #King of Kings
2753
+ #PER
2754
+ if = {
2755
+ limit = { can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ } }
2756
+ set_country_flag = per_zoroastrian_missions
2757
+ custom_tooltip = per_preview_zoroastrian_missions
2758
+ }
2759
+ }
2760
+ preview_mission_branch_4 = {
2761
+ #Origins
2762
+ # none
2763
+ #Lions of the North
2764
+ #SWE
2765
+ if = {
2766
+ limit = { can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ } }
2767
+ set_country_flag = sca_unlock_norse_missions
2768
+ custom_tooltip = SCA_preview_norse
2769
+ }
2770
+ #DAN
2771
+ if = {
2772
+ limit = { can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ } }
2773
+ set_country_flag = sca_unlock_norse_missions
2774
+ custom_tooltip = SCA_preview_norse
2775
+ }
2776
+ #NOR
2777
+ if = {
2778
+ limit = { can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ } }
2779
+ set_country_flag = sca_unlock_norse_missions
2780
+ custom_tooltip = SCA_preview_norse
2781
+ }
2782
+ #Domination
2783
+ # none
2784
+ #King of Kings
2785
+ # none
2786
+ }
2787
+ preview_mission_branch_5 = {
2788
+ #Origins
2789
+ # none
2790
+ #Lions of the North
2791
+ # none
2792
+ #Domination
2793
+ # none
2794
+ #King of Kings
2795
+ # none
2796
+ if = {
2797
+ limit = { can_preview_mission_of_key_and_batch = { key = DUMMY batch = $batch$ } }
2798
+ custom_tooltip = COOL_EFFECT
2799
+ }
2800
+ }
2801
+ preview_mission_branch = {
2802
+ clear_all_branching_flags = { batch = $batch$ }
2803
+ preview_mission_branch_$branch$ = { batch = $batch$ }
2804
+ hidden_effect = { swap_non_generic_missions = yes }
2805
+ }
common/scripted_functions/00_scripted_functions.txt CHANGED
@@ -54,14 +54,19 @@ can_add_province_to_hre = {
54
54
 
55
55
  }
56
56
 
57
+ #ROOT = province, FROM = country
57
58
  can_remove_province_from_hre = {
58
59
  condition = {
59
60
  potential = {
60
- ai = yes
61
+ owner = {
62
+ ai = yes
63
+ }
61
64
  }
62
65
  allow = {
63
- NOT = {
64
- has_country_flag = permanently_left_hre_flag
66
+ owner = {
67
+ NOT = {
68
+ has_country_flag = permanently_left_hre_flag
69
+ }
65
70
  }
66
71
  }
67
72
  }
@@ -147,6 +152,9 @@ can_colonize_province_siberian_frontier = {
147
152
  can_add_seat_in_parliament = {
148
153
  }
149
154
 
155
+ can_remove_seat_in_parliament = {
156
+ }
157
+
150
158
  can_add_estate = {
151
159
  }
152
160
 
@@ -173,7 +181,7 @@ can_have_colonial_nations = {
173
181
  }
174
182
  }
175
183
  allow = {
176
- always = no
184
+ always = no
177
185
  }
178
186
  }
179
187
  }
@@ -201,4 +209,20 @@ will_demand_annexation = {
201
209
  NOT = { hre_reform_passed = landfriede }
202
210
  }
203
211
  }
212
+ }
213
+
214
+ can_join_hre = {
215
+ condition = {
216
+ tooltip = "PERMANENTLY_LEFT_HRE"
217
+ potential = {
218
+ }
219
+ allow = {
220
+ NOT = {
221
+ has_country_flag = permanently_left_hre_flag
222
+ }
223
+ }
224
+ }
225
+ }
226
+
227
+ can_leave_hre = {
204
228
  }
common/scripted_functions/01_scripted_functions_with_effect.txt DELETED
@@ -1,2 +0,0 @@
1
- # If you add support to a scripted to run effects then please move it in here!
2
-
common/scripted_triggers/00_scripted_triggers.txt CHANGED
@@ -101,7 +101,7 @@ has_adm_advisor_3 = {
101
101
  treasurer = 3
102
102
  philosopher = 3
103
103
  artist = 3
104
- theologian = 3
104
+ theologian = 3
105
105
  master_of_mint = 3
106
106
  inquisitor = 3
107
107
  natural_scientist = 3
@@ -109,6 +109,46 @@ has_adm_advisor_3 = {
109
109
  }
110
110
  }
111
111
 
112
+ has_adm_advisor_of_level = {
113
+ OR = {
114
+ treasurer = $level$
115
+ philosopher = $level$
116
+ artist = $level$
117
+ theologian = $level$
118
+ master_of_mint = $level$
119
+ inquisitor = $level$
120
+ natural_scientist = $level$
121
+ }
122
+ }
123
+
124
+ has_dip_advisor_of_level = {
125
+ OR = {
126
+ statesman = $level$
127
+ diplomat = $level$
128
+ naval_reformer = $level$
129
+ trader = $level$
130
+ colonial_governor = $level$
131
+ navigator = $level$
132
+ spymaster = $level$
133
+ }
134
+ }
135
+
136
+ has_mil_advisor_of_level = {
137
+ OR = {
138
+ army_organiser = $level$
139
+ army_reformer = $level$
140
+ commandant = $level$
141
+ grand_captain = $level$
142
+ recruitmaster = $level$
143
+ fortification_expert = $level$
144
+ quartermaster = $level$
145
+ }
146
+ }
147
+
148
+ has_advisor_of_type_and_level = {
149
+ has_$type$_advisor_of_level = { level = $level$ }
150
+ }
151
+
112
152
 
113
153
  has_dip_advisor = {
114
154
  custom_trigger_tooltip = {
@@ -161,6 +201,7 @@ is_subject_other_than_tributary_trigger = { #Ie Tags that cannot conduct indepen
161
201
  tooltip = is_subject_other_than_tributary_trigger_tooltip
162
202
  is_subject = yes
163
203
  NOT = { is_subject_of_type = tributary_state }
204
+ NOT = { is_subject_of_type = cultural_sphere_of_influence_subject }
164
205
  }
165
206
  }
166
207
 
@@ -170,6 +211,7 @@ is_free_or_tributary_trigger = { #I.e. Tags that can conduct independent diploma
170
211
  OR = {
171
212
  is_subject = no
172
213
  is_subject_of_type = tributary_state
214
+ is_subject_of_type = cultural_sphere_of_influence_subject
173
215
  }
174
216
  }
175
217
  }
@@ -204,6 +246,7 @@ ruler_has_good_adm_personality = {
204
246
  ruler_has_personality = incorruptible_personality
205
247
  ruler_has_personality = architectural_visionary_personality
206
248
  ruler_has_personality = scholar_personality
249
+ ruler_has_personality = reformist_personality
207
250
  }
208
251
  }
209
252
 
@@ -235,6 +278,7 @@ ruler_has_good_mil_personality = {
235
278
  ruler_has_personality = inspiring_leader_personality
236
279
  ruler_has_personality = martial_educator_personality
237
280
  ruler_has_personality = kind_hearted_personality
281
+ ruler_has_personality = legendary_pirate_personality
238
282
  }
239
283
  }
240
284
 
@@ -283,6 +327,7 @@ heir_has_good_adm_personality = {
283
327
  heir_has_personality = incorruptible_personality
284
328
  heir_has_personality = architectural_visionary_personality
285
329
  heir_has_personality = scholar_personality
330
+ heir_has_personality = reformist_personality
286
331
  }
287
332
  }
288
333
 
@@ -315,6 +360,7 @@ heir_has_good_mil_personality = {
315
360
  heir_has_personality = inspiring_leader_personality
316
361
  heir_has_personality = martial_educator_personality
317
362
  heir_has_personality = kind_hearted_personality
363
+ heir_has_personality = legendary_pirate_personality
318
364
  }
319
365
  }
320
366
 
@@ -363,6 +409,7 @@ consort_has_good_adm_personality = {
363
409
  consort_has_personality = incorruptible_personality
364
410
  consort_has_personality = architectural_visionary_personality
365
411
  consort_has_personality = scholar_personality
412
+ consort_has_personality = reformist_personality
366
413
  }
367
414
  }
368
415
 
@@ -395,6 +442,7 @@ consort_has_good_mil_personality = {
395
442
  consort_has_personality = inspiring_leader_personality
396
443
  consort_has_personality = martial_educator_personality
397
444
  consort_has_personality = kind_hearted_personality
445
+ consort_has_personality = legendary_pirate_personality
398
446
  }
399
447
  }
400
448
 
@@ -504,55 +552,86 @@ industrialized_province_trigger = { #Province Scope
504
552
  was_never_end_game_tag_trigger = { #Country Scope
505
553
  OR = {
506
554
  NOT = { end_game_tags_blocked = yes }
507
- AND = {
508
- NOT = { was_tag = MUG }
509
- NOT = { was_tag = TUR }
510
- NOT = { was_tag = BYZ }
511
- NOT = { was_tag = ROM }
512
- NOT = { was_tag = HLR }
513
- NOT = { was_tag = RUM }
514
- NOT = { was_tag = QNG }
515
- NOT = { was_tag = RUS }
516
- NOT = { was_tag = PLC }
517
- NOT = { was_tag = JAP }
518
- NOT = { was_tag = YUA }
519
- NOT = { was_tag = HIN }
520
- NOT = { was_tag = BHA }
521
- NOT = { was_tag = ARB }
522
- NOT = { was_tag = PAP }
523
- NOT = { was_tag = SPA }
524
- NOT = { was_tag = GBR }
525
- NOT = { was_tag = ITA }
526
- NOT = { was_tag = GER }
527
- NOT = { was_tag = MNG }
528
- NOT = { was_tag = MGE }
529
- NOT = { was_tag = SYN }
530
- NOT = { was_tag = ADU }
531
- NOT = { was_tag = LOT }
532
- NOT = { tag = MUG }
533
- NOT = { tag = TUR }
534
- NOT = { tag = BYZ }
535
- NOT = { tag = ROM }
536
- NOT = { tag = HLR }
537
- NOT = { tag = RUM }
538
- NOT = { tag = QNG }
539
- NOT = { tag = RUS }
540
- NOT = { tag = PLC }
541
- NOT = { tag = JAP }
542
- NOT = { tag = YUA }
543
- NOT = { tag = HIN }
544
- NOT = { tag = BHA }
545
- NOT = { tag = ARB }
546
- NOT = { tag = PAP }
547
- NOT = { tag = SPA }
548
- NOT = { tag = GBR }
549
- NOT = { tag = ITA }
550
- NOT = { tag = GER }
551
- NOT = { tag = MNG }
552
- NOT = { tag = MGE }
553
- NOT = { tag = SYN }
554
- NOT = { tag = ADU }
555
- NOT = { tag = LOT }
555
+ custom_trigger_tooltip = {
556
+ tooltip = was_never_end_game_tag_trigger_tt
557
+ AND = {
558
+ NOT = { was_tag = FRA }
559
+ NOT = { was_tag = MUG }
560
+ NOT = { was_tag = PER }
561
+ NOT = { was_tag = ERS }
562
+ NOT = { was_tag = TUR }
563
+ NOT = { was_tag = BYZ }
564
+ NOT = { was_tag = ROM }
565
+ NOT = { was_tag = HLR }
566
+ NOT = { was_tag = RUM }
567
+ NOT = { was_tag = QNG }
568
+ NOT = { was_tag = RUS }
569
+ NOT = { was_tag = PLC }
570
+ NOT = { was_tag = JAP }
571
+ NOT = { was_tag = YUA }
572
+ NOT = { was_tag = HIN }
573
+ NOT = { was_tag = BHA }
574
+ NOT = { was_tag = ARB }
575
+ NOT = { was_tag = PAP }
576
+ NOT = { was_tag = SPA }
577
+ NOT = { was_tag = GBR }
578
+ NOT = { was_tag = AVE }
579
+ NOT = { was_tag = ITA }
580
+ NOT = { was_tag = GER }
581
+ NOT = { was_tag = MNG }
582
+ NOT = { was_tag = MGE }
583
+ NOT = { was_tag = SYN }
584
+ NOT = { was_tag = ADU }
585
+ NOT = { was_tag = LOT }
586
+ NOT = { was_tag = USA }
587
+ NOT = { was_tag = CAN }
588
+ NOT = { was_tag = BRZ }
589
+ NOT = { was_tag = AUS }
590
+ NOT = { was_tag = MEX }
591
+ NOT = { was_tag = ETH }
592
+ NOT = { was_tag = AKS }
593
+ NOT = { was_tag = GZI }
594
+ NOT = { was_tag = RZI }
595
+ NOT = { was_tag = SCA }
596
+ NOT = { tag = FRA }
597
+ NOT = { tag = MUG }
598
+ NOT = { tag = PER }
599
+ NOT = { tag = ERS }
600
+ NOT = { tag = TUR }
601
+ NOT = { tag = BYZ }
602
+ NOT = { tag = ROM }
603
+ NOT = { tag = HLR }
604
+ NOT = { tag = RUM }
605
+ NOT = { tag = QNG }
606
+ NOT = { tag = RUS }
607
+ NOT = { tag = PLC }
608
+ NOT = { tag = JAP }
609
+ NOT = { tag = YUA }
610
+ NOT = { tag = HIN }
611
+ NOT = { tag = BHA }
612
+ NOT = { tag = ARB }
613
+ NOT = { tag = PAP }
614
+ NOT = { tag = SPA }
615
+ NOT = { tag = GBR }
616
+ NOT = { tag = AVE }
617
+ NOT = { tag = ITA }
618
+ NOT = { tag = GER }
619
+ NOT = { tag = MNG }
620
+ NOT = { tag = MGE }
621
+ NOT = { tag = SYN }
622
+ NOT = { tag = ADU }
623
+ NOT = { tag = LOT }
624
+ NOT = { tag = USA }
625
+ NOT = { tag = CAN }
626
+ NOT = { tag = BRZ }
627
+ NOT = { tag = AUS }
628
+ NOT = { tag = MEX }
629
+ NOT = { tag = ETH }
630
+ NOT = { tag = AKS }
631
+ NOT = { tag = GZI }
632
+ NOT = { tag = RZI }
633
+ NOT = { tag = SCA }
634
+ }
556
635
  }
557
636
  }
558
637
  }
@@ -642,6 +721,7 @@ has_manufactory_no_custom_tooltip_trigger = { #Province Scope
642
721
  trade_goods = ivory
643
722
  trade_goods = slaves
644
723
  trade_goods = spices
724
+ trade_goods = cloves
645
725
  trade_goods = fur
646
726
  trade_goods = incense
647
727
  }
@@ -700,38 +780,32 @@ has_no_manufactory_trigger = { #Province Scope
700
780
  root_can_build_manufactory_here_trigger = {
701
781
  has_no_manufactory_trigger = yes
702
782
  num_free_building_slots = 1
703
- if = {
704
- limit = {
783
+ OR = {
784
+ AND = {
705
785
  OR = {
706
786
  trade_goods = naval_supplies
707
787
  trade_goods = fish
708
788
  trade_goods = salt
709
789
  }
710
- }
711
- ROOT = { dip_tech = 11 }
712
- }
713
- else_if = {
714
- limit = {
790
+ ROOT = { dip_tech = 11 }
791
+ }
792
+ AND = {
715
793
  OR = {
716
794
  trade_goods = copper
717
795
  trade_goods = iron
718
796
  }
719
- }
720
- ROOT = { mil_tech = 11 }
721
- }
722
- else_if = {
723
- limit = {
797
+ ROOT = { mil_tech = 11 }
798
+ }
799
+ AND = {
724
800
  OR = {
725
801
  trade_goods = wool
726
802
  trade_goods = cloth
727
803
  trade_goods = silk
728
804
  trade_goods = dyes
729
805
  }
730
- }
731
- ROOT = { adm_tech = 11 }
732
- }
733
- else_if = {
734
- limit = {
806
+ ROOT = { adm_tech = 11 }
807
+ }
808
+ AND = {
735
809
  OR = {
736
810
  trade_goods = coffee
737
811
  trade_goods = cotton
@@ -740,33 +814,28 @@ root_can_build_manufactory_here_trigger = {
740
814
  trade_goods = tea
741
815
  trade_goods = cocoa
742
816
  }
743
- }
744
- ROOT = { adm_tech = 14 }
745
- }
746
- else_if = {
747
- limit = {
817
+ ROOT = { adm_tech = 14 }
818
+ }
819
+ AND = {
748
820
  OR = {
749
821
  trade_goods = ivory
750
822
  trade_goods = slaves
751
823
  trade_goods = spices
824
+ trade_goods = cloves
752
825
  trade_goods = fur
753
826
  trade_goods = incense
754
827
  }
755
- }
756
- ROOT = { dip_tech = 14 }
757
- }
758
- else_if = {
759
- limit = {
828
+ ROOT = { dip_tech = 14 }
829
+ }
830
+ AND = {
760
831
  OR = {
761
832
  trade_goods = grain
762
833
  trade_goods = livestock
763
834
  trade_goods = wine
764
835
  }
765
- }
766
- ROOT = { adm_tech = 6 }
767
- }
768
- else_if = {
769
- limit = {
836
+ ROOT = { adm_tech = 6 }
837
+ }
838
+ AND = {
770
839
  OR = {
771
840
  trade_goods = paper
772
841
  trade_goods = gems
@@ -774,15 +843,13 @@ root_can_build_manufactory_here_trigger = {
774
843
  trade_goods = glass
775
844
  trade_goods = chinaware
776
845
  }
777
- }
778
- ROOT = { adm_tech = 16 }
779
- }
780
- else_if = {
781
- limit = {
846
+ ROOT = { adm_tech = 16 }
847
+ }
848
+ AND = {
782
849
  trade_goods = coal
783
- }
784
- ROOT = { adm_tech = 21 }
785
- }
850
+ ROOT = { adm_tech = 21 }
851
+ }
852
+ }
786
853
  }
787
854
 
788
855
  has_nobles_trade_good_trigger = {
@@ -814,6 +881,7 @@ has_burghers_trade_good_trigger = {
814
881
  trade_goods = dyes
815
882
  trade_goods = coal
816
883
  trade_goods = spices
884
+ trade_goods = cloves
817
885
  trade_goods = tropical_wood
818
886
  trade_goods = glass
819
887
  trade_goods = chinaware
@@ -874,20 +942,26 @@ has_completed_all_reforms_trigger = {
874
942
  tooltip = has_completed_all_reforms_trigger_tooltip
875
943
  NOT = { has_dlc = "Emperor" }
876
944
  OR = {
877
- has_reform = political_absolutism_reform
878
- has_reform = legislative_houses_reform
879
- has_reform = strengthen_executive_powers_reform
880
- has_reform = reinforce_republican_values_reform
881
- has_reform = enlightened_monarchy_reform
882
- has_reform = emperor_of_the_revolution_reform
883
- has_reform = government_for_people_reform
884
- has_reform = president_for_life_reform
885
- has_reform = all_under_tengri_reform
886
- has_reform = proclaim_religious_head_reform
887
- has_reform = priestly_autonomy_reform
888
- has_reform = many_fingers_of_god_reform
889
- has_reform = religious_permanent_revolution_reform
890
- has_reform = religion_in_one_country_reform
945
+ AND = {
946
+ government = monarchy
947
+ reform_level = 11
948
+ }
949
+ AND = {
950
+ government = republic
951
+ reform_level = 13
952
+ }
953
+ AND = {
954
+ government = theocracy
955
+ reform_level = 13
956
+ }
957
+ AND = {
958
+ government = native
959
+ reform_level = 5
960
+ }
961
+ AND = {
962
+ government = tribal
963
+ reform_level = 6
964
+ }
891
965
  }
892
966
  }
893
967
  }
@@ -897,77 +971,175 @@ has_final_tier_reforms_trigger = {
897
971
  custom_trigger_tooltip = {
898
972
  tooltip = has_completed_all_reforms_trigger_tooltip
899
973
  OR = {
900
- has_reform = political_absolutism_reform
901
- has_reform = legislative_houses_reform
902
- has_reform = strengthen_executive_powers_reform
903
- has_reform = reinforce_republican_values_reform
904
- has_reform = enlightened_monarchy_reform
905
- has_reform = emperor_of_the_revolution_reform
906
- has_reform = government_for_people_reform
907
- has_reform = president_for_life_reform
908
- has_reform = all_under_tengri_reform
909
- has_reform = proclaim_religious_head_reform
910
- has_reform = priestly_autonomy_reform
911
- has_reform = many_fingers_of_god_reform
912
- has_reform = religious_permanent_revolution_reform
913
- has_reform = religion_in_one_country_reform
974
+ AND = {
975
+ government = monarchy
976
+ reform_level = 11
977
+ }
978
+ AND = {
979
+ government = republic
980
+ reform_level = 13
981
+ }
982
+ AND = {
983
+ government = theocracy
984
+ reform_level = 13
985
+ }
986
+ AND = {
987
+ government = native
988
+ reform_level = 5
989
+ }
990
+ AND = {
991
+ government = tribal
992
+ reform_level = 6
993
+ }
914
994
  }
915
995
  }
916
996
  }
917
997
 
918
998
  has_holy_order_trigger = {
999
+ if = {
1000
+ limit = {
1001
+ has_dlc = "Golden Century"
1002
+ }
1003
+ custom_trigger_tooltip = {
1004
+ tooltip = "has_holy_order_trigger_tooltip"
1005
+ OR = {
1006
+ holy_order = benedictines
1007
+ holy_order = carthusians
1008
+ holy_order = hieronymites
1009
+ holy_order = jesuit_order
1010
+ holy_order = augustinians
1011
+ holy_order = carmelites
1012
+ holy_order = dominican_order
1013
+ holy_order = franciscan_order
1014
+ holy_order = alcantara_order
1015
+ holy_order = avis_order
1016
+ holy_order = calatrava_order
1017
+ holy_order = montesa_order
1018
+ holy_order = san_juan_order
1019
+ holy_order = santiago_order
1020
+ holy_order = shadhili_order
1021
+ holy_order = qadiri_order
1022
+ holy_order = aissawa_order
1023
+ holy_order = mevlevi_order
1024
+ holy_order = bektashi_order
1025
+ holy_order = buzhengshi
1026
+ holy_order = anchasi
1027
+ holy_order = du_si
1028
+ holy_order = savafid_order
1029
+ holy_order = zahediyeh_order
1030
+ }
1031
+ }
1032
+ }
1033
+ }
1034
+
1035
+ has_any_holy_order = {
919
1036
  custom_trigger_tooltip = {
920
1037
  tooltip = "has_holy_order_trigger_tooltip"
921
1038
  OR = {
1039
+ holy_order = benedictines
1040
+ holy_order = carthusians
1041
+ holy_order = hieronymites
922
1042
  holy_order = jesuit_order
1043
+ holy_order = augustinians
1044
+ holy_order = carmelites
923
1045
  holy_order = dominican_order
924
1046
  holy_order = franciscan_order
1047
+ holy_order = alcantara_order
1048
+ holy_order = avis_order
1049
+ holy_order = calatrava_order
1050
+ holy_order = montesa_order
1051
+ holy_order = san_juan_order
1052
+ holy_order = santiago_order
925
1053
  holy_order = shadhili_order
926
1054
  holy_order = qadiri_order
927
1055
  holy_order = aissawa_order
1056
+ holy_order = mevlevi_order
1057
+ holy_order = bektashi_order
1058
+ holy_order = buzhengshi
1059
+ holy_order = anchasi
1060
+ holy_order = du_si
1061
+ holy_order = savafid_order
1062
+ holy_order = zahediyeh_order
1063
+ }
1064
+ }
1065
+ }
1066
+
1067
+ can_create_holy_orders = {
1068
+ OR = {
1069
+ AND = {
1070
+ OR = {
1071
+ AND = {
1072
+ culture_group = iberian
1073
+ religion = catholic
1074
+ }
1075
+ has_country_flag = enable_holy_orders_flag
1076
+ }
1077
+ religion_group = christian
1078
+ }
1079
+ AND = {
1080
+ OR = {
1081
+ has_government_attribute = unlock_ottoman_holy_orders
1082
+ primary_culture = andalucian
1083
+ has_country_flag = ARB_grant_access_to_muslim_holy_orders_flag
1084
+ }
1085
+ religion_group = muslim
1086
+ }
1087
+ custom_trigger_tooltip = {
1088
+ tooltip = mng_has_enabled_grand_coordinator_offices_tt
1089
+ has_country_flag = mng_enable_3_grand_coordinators_offices_flag
1090
+ }
1091
+ AND = {
1092
+ OR = {
1093
+ has_government_attribute = unlock_persia_holy_orders
1094
+ has_country_flag = unlocked_holy_order_savafid_order
1095
+ is_or_was_tag = { tag = ARL }
1096
+ }
1097
+ OR = {
1098
+ religion = shiite
1099
+ religion = ibadi
1100
+ }
1101
+ }
1102
+ AND = {
1103
+ OR = {
1104
+ has_government_attribute = unlock_persia_holy_orders
1105
+ has_country_flag = unlocked_holy_order_zahediyeh_order
1106
+ }
1107
+ religion_group = muslim
928
1108
  }
929
1109
  }
930
1110
  }
931
1111
 
1112
+ unlocked_holy_order = {
1113
+ has_country_flag = unlocked_holy_order_$type$
1114
+ }
1115
+
932
1116
  same_govt_as_root_trigger = {
933
1117
  custom_trigger_tooltip = {
934
1118
  tooltip = same_govt_as_root_tt
935
1119
  OR = {
936
1120
  AND = {
937
1121
  government = theocracy
938
- root = {
939
- government = theocracy
940
- }
1122
+ root = { government = theocracy }
941
1123
  }
942
1124
  AND = {
943
1125
  government = monarchy
944
- root = {
945
- government = monarchy
946
- }
1126
+ root = { government = monarchy }
947
1127
  }
948
1128
  AND = {
949
1129
  government = republic
950
- root = {
951
- government = republic
952
- }
1130
+ root = { government = republic }
953
1131
  }
954
1132
  AND = {
955
1133
  government = dictatorship
956
- root = {
957
- government = dictatorship
958
- }
1134
+ root = { government = dictatorship }
959
1135
  }
960
1136
  AND = {
961
1137
  government = tribal
962
- root = {
963
- government = tribal
964
- }
1138
+ root = { government = tribal }
965
1139
  }
966
1140
  AND = {
967
1141
  government = native
968
- root = {
969
- government = native
970
- }
1142
+ root = { government = native }
971
1143
  }
972
1144
  }
973
1145
  }
@@ -976,59 +1148,105 @@ same_govt_as_root_trigger = {
976
1148
  # Building triggers
977
1149
 
978
1150
  has_tax_building_trigger = {
979
- OR = {
980
- has_building = temple
981
- has_building = cathedral
1151
+ custom_trigger_tooltip = {
1152
+ tooltip = has_tax_building_trigger_tt
1153
+ OR = {
1154
+ has_building = temple
1155
+ has_building = cathedral
1156
+ }
982
1157
  }
983
1158
  }
984
1159
 
985
1160
  has_trade_building_trigger = {
986
- OR = {
987
- has_building = marketplace
988
- has_building = trade_depot
989
- has_building = stock_exchange
1161
+ custom_trigger_tooltip = {
1162
+ tooltip = has_trade_building_trigger_tt
1163
+ OR = {
1164
+ has_building = marketplace
1165
+ has_building = trade_depot
1166
+ has_building = stock_exchange
1167
+ }
990
1168
  }
991
1169
  }
992
1170
 
993
1171
  has_production_building_trigger = {
994
- OR = {
995
- has_building = workshop
996
- has_building = counting_house
1172
+ custom_trigger_tooltip = {
1173
+ tooltip = has_production_building_trigger_tt
1174
+ OR = {
1175
+ has_building = workshop
1176
+ has_building = counting_house
1177
+ }
997
1178
  }
998
1179
  }
999
1180
 
1000
1181
  has_manpower_building_trigger = {
1001
- OR = {
1002
- has_building = barracks
1003
- has_building = training_fields
1182
+ custom_trigger_tooltip = {
1183
+ tooltip = has_manpower_building_trigger_tt
1184
+ OR = {
1185
+ has_building = barracks
1186
+ has_building = training_fields
1187
+ }
1004
1188
  }
1005
1189
  }
1006
1190
 
1007
1191
  has_shipyard_building_trigger = {
1008
- OR = {
1009
- has_building = shipyard
1010
- has_building = grand_shipyard
1192
+ custom_trigger_tooltip = {
1193
+ tooltip = has_shipyard_building_trigger_tt
1194
+ OR = {
1195
+ has_building = shipyard
1196
+ has_building = grand_shipyard
1197
+ }
1011
1198
  }
1012
1199
  }
1013
1200
 
1014
1201
  has_dock_building_trigger = {
1015
- OR = {
1016
- has_building = dock
1017
- has_building = drydock
1202
+ custom_trigger_tooltip = {
1203
+ tooltip = has_dock_building_trigger_tt
1204
+ OR = {
1205
+ has_building = dock
1206
+ has_building = drydock
1207
+ }
1018
1208
  }
1019
1209
  }
1020
1210
 
1021
1211
  has_forcelimit_building_trigger = {
1022
- OR = {
1023
- has_building = regimental_camp
1024
- has_building = conscription_center
1212
+ custom_trigger_tooltip = {
1213
+ tooltip = has_forcelimit_building_trigger_tt
1214
+ OR = {
1215
+ has_building = regimental_camp
1216
+ has_building = conscription_center
1217
+ }
1025
1218
  }
1026
1219
  }
1027
1220
 
1028
1221
  has_courthouse_building_trigger = {
1029
- OR = {
1030
- has_building = courthouse
1031
- has_building = town_hall
1222
+ custom_trigger_tooltip = {
1223
+ tooltip = has_courthouse_building_trigger_tt
1224
+ OR = {
1225
+ has_building = courthouse
1226
+ has_building = town_hall
1227
+ }
1228
+ }
1229
+ }
1230
+
1231
+ has_fort_building_trigger = {
1232
+ custom_trigger_tooltip = {
1233
+ tooltip = has_fort_building_trigger_tt
1234
+ OR = {
1235
+ has_building = fort_15th
1236
+ has_building = fort_16th
1237
+ has_building = fort_17th
1238
+ has_building = fort_18th
1239
+ }
1240
+ }
1241
+ }
1242
+
1243
+ has_coast_defense_building_trigger = {
1244
+ custom_trigger_tooltip = {
1245
+ tooltip = has_coast_defense_building_trigger_tt
1246
+ OR = {
1247
+ has_building = coastal_defence
1248
+ has_building = naval_battery
1249
+ }
1032
1250
  }
1033
1251
  }
1034
1252
 
@@ -1049,6 +1267,7 @@ has_been_insulted_by_root = {
1049
1267
  }
1050
1268
 
1051
1269
  valid_for_personal_unions_trigger = {
1270
+ exists = yes
1052
1271
  is_subject = no
1053
1272
  government = monarchy
1054
1273
  religion_group = christian
@@ -1121,7 +1340,12 @@ province_has_current_tech_fort_trigger = {
1121
1340
  NOT = { mil_tech = 14 }
1122
1341
  }
1123
1342
  }
1124
- has_building = fort_15th
1343
+ OR = {
1344
+ has_building = fort_15th
1345
+ has_building = fort_16th
1346
+ has_building = fort_17th
1347
+ has_building = fort_18th
1348
+ }
1125
1349
  }
1126
1350
  else_if = {
1127
1351
  limit = {
@@ -1132,7 +1356,11 @@ province_has_current_tech_fort_trigger = {
1132
1356
  }
1133
1357
  }
1134
1358
  }
1135
- has_building = fort_16th
1359
+ OR = {
1360
+ has_building = fort_16th
1361
+ has_building = fort_17th
1362
+ has_building = fort_18th
1363
+ }
1136
1364
  }
1137
1365
  else_if = {
1138
1366
  limit = {
@@ -1143,7 +1371,10 @@ province_has_current_tech_fort_trigger = {
1143
1371
  }
1144
1372
  }
1145
1373
  }
1146
- has_building = fort_17th
1374
+ OR = {
1375
+ has_building = fort_17th
1376
+ has_building = fort_18th
1377
+ }
1147
1378
  }
1148
1379
  else_if = {
1149
1380
  limit = {
@@ -1158,10 +1389,44 @@ province_has_current_tech_fort_trigger = {
1158
1389
 
1159
1390
 
1160
1391
 
1392
+ province_has_current_tech_trade_trigger = {
1393
+ custom_trigger_tooltip = {
1394
+ tooltip = province_has_current_tech_trade_trigger_tt
1395
+ if = {
1396
+ limit = {
1397
+ owner = {
1398
+ NOT = { dip_tech = 17 }
1399
+ }
1400
+ }
1401
+ has_building = marketplace
1402
+ }
1403
+ else_if = {
1404
+ limit = {
1405
+ owner = {
1406
+ AND = {
1407
+ dip_tech = 17
1408
+ NOT = { dip_tech = 22 }
1409
+ }
1410
+ }
1411
+ }
1412
+ has_building = trade_depot
1413
+ }
1414
+ else_if = {
1415
+ limit = {
1416
+ owner = {
1417
+ dip_tech = 22
1418
+ }
1419
+ }
1420
+ has_building = stock_exchange
1421
+ }
1422
+ }
1423
+ }
1424
+
1425
+
1161
1426
  check_reducing_estate_revolt_size_trigger = {
1162
1427
  if = {
1163
1428
  limit = {
1164
- NOT = { num_of_cities = 8 }
1429
+ NOT = { num_of_cities = 16 }
1165
1430
  }
1166
1431
  NOT = {
1167
1432
  num_of_owned_provinces_with = {
@@ -1172,7 +1437,7 @@ check_reducing_estate_revolt_size_trigger = {
1172
1437
  }
1173
1438
  else_if = {
1174
1439
  limit = {
1175
- NOT = { num_of_cities = 12 }
1440
+ NOT = { num_of_cities = 24 }
1176
1441
  }
1177
1442
  NOT = {
1178
1443
  num_of_owned_provinces_with = {
@@ -1183,7 +1448,7 @@ check_reducing_estate_revolt_size_trigger = {
1183
1448
  }
1184
1449
  else_if = {
1185
1450
  limit = {
1186
- NOT = { num_of_cities = 18 }
1451
+ NOT = { num_of_cities = 36 }
1187
1452
  }
1188
1453
  NOT = {
1189
1454
  num_of_owned_provinces_with = {
@@ -1194,7 +1459,7 @@ check_reducing_estate_revolt_size_trigger = {
1194
1459
  }
1195
1460
  else_if = {
1196
1461
  limit = {
1197
- NOT = { num_of_cities = 28 }
1462
+ NOT = { num_of_cities = 56 }
1198
1463
  }
1199
1464
  NOT = {
1200
1465
  num_of_owned_provinces_with = {
@@ -1205,7 +1470,7 @@ check_reducing_estate_revolt_size_trigger = {
1205
1470
  }
1206
1471
  else_if = {
1207
1472
  limit = {
1208
- NOT = { num_of_cities = 40 }
1473
+ NOT = { num_of_cities = 80 }
1209
1474
  }
1210
1475
  NOT = {
1211
1476
  num_of_owned_provinces_with = {
@@ -1216,7 +1481,7 @@ check_reducing_estate_revolt_size_trigger = {
1216
1481
  }
1217
1482
  else_if = {
1218
1483
  limit = {
1219
- NOT = { num_of_cities = 50 }
1484
+ NOT = { num_of_cities = 100 }
1220
1485
  }
1221
1486
  NOT = {
1222
1487
  num_of_owned_provinces_with = {
@@ -1305,12 +1570,11 @@ revolution_event_can_happen_trigger = {
1305
1570
  OR = {
1306
1571
  capital_scope = {
1307
1572
  # continent = europe
1308
- controlled_by = REB
1573
+ controlled_by = revolutionary_rebels
1309
1574
  }
1310
1575
  has_country_modifier = just_lost_to_revolutionary_rebels
1311
1576
  has_country_flag = revolution_disaster_immediate_revolution
1312
1577
  }
1313
- num_of_cities = 10
1314
1578
  is_revolutionary = no
1315
1579
  }
1316
1580
  #country scope, used in election events to check whether generated rulers may be female
@@ -1319,6 +1583,7 @@ republic_with_female_rulers_trigger = {
1319
1583
  has_active_policy = mandatory_service
1320
1584
  has_country_modifier = sister_suffragettes
1321
1585
  has_country_modifier = mary_inheritance_reforms
1586
+ has_reform = democratic_values_reform
1322
1587
  }
1323
1588
  }
1324
1589
 
@@ -1328,3 +1593,2921 @@ is_absolutism_active = {
1328
1593
  current_age = age_of_revolutions
1329
1594
  }
1330
1595
  }
1596
+
1597
+ is_southeast_tribe = {
1598
+ OR = {
1599
+ tag = HNI
1600
+ tag = ALT
1601
+ tag = ICH
1602
+ tag = COF
1603
+ tag = JOA
1604
+ tag = ETO
1605
+ tag = SAT
1606
+ tag = CIA
1607
+ tag = COO
1608
+ tag = ABI
1609
+ tag = COW
1610
+ tag = NTZ
1611
+ tag = CAQ
1612
+ tag = PCH
1613
+ tag = QUI
1614
+ tag = CCA
1615
+ tag = ATA
1616
+ tag = KSI
1617
+ tag = OEO
1618
+ tag = ANL
1619
+ tag = NTC
1620
+ tag = OSA
1621
+ tag = CAD
1622
+ tag = POW
1623
+ tag = CLG
1624
+ tag = HWK
1625
+ tag = CHO
1626
+ }
1627
+ }
1628
+
1629
+ is_iroquois = {
1630
+ OR = {
1631
+ tag = TIO
1632
+ tag = TAH
1633
+ tag = ATT
1634
+ tag = AGG
1635
+ tag = ATW
1636
+ tag = ARN
1637
+ tag = OSH
1638
+ tag = STA
1639
+ tag = ERI
1640
+ tag = WEN
1641
+ tag = MOH
1642
+ tag = ONE
1643
+ tag = ONO
1644
+ tag = CAY
1645
+ tag = SEN
1646
+ tag = TSC
1647
+ tag = IRO
1648
+ }
1649
+ }
1650
+
1651
+ is_volcanic_area = { #polynesia and indonesia
1652
+ OR = {
1653
+ area = north_sumatra_area #aceh
1654
+ area = batak_area
1655
+ area = minangkabau_area
1656
+ area = south_sumatra_area #lampung
1657
+ area = banten_area
1658
+ area = east_java_area
1659
+ area = central_java_area
1660
+ area = west_java_area
1661
+ area = lesser_sunda_islands_area
1662
+ area = mindanao_area #east mindanao
1663
+ area = west_mindanao_area
1664
+ area = visayas_area
1665
+ area = luzon_area #northern luzon
1666
+ area = southern_luzon_area
1667
+ area = te_ika_a_maui_hauauru_area
1668
+ area = te_ika_a_maui_waho_area
1669
+ area = eastern_polynesia_area #tahiti
1670
+ area = northern_polynesia_area #hawaii
1671
+ area = polynesia_area
1672
+ area = melanesia_area
1673
+ area = papua_area
1674
+ }
1675
+ }
1676
+
1677
+ #Country scope
1678
+ is_or_was_tag = {
1679
+ OR = {
1680
+ tag = $tag$
1681
+ was_tag = $tag$
1682
+ }
1683
+ }
1684
+
1685
+ #Province scope
1686
+ is_trade_node_province = {
1687
+ custom_trigger_tooltip = {
1688
+ tooltip = is_trade_node_province_tt
1689
+ OR = {
1690
+ province_id = 4064
1691
+ province_id = 4097
1692
+ province_id = 1191
1693
+ province_id = 2868
1694
+ province_id = 2935
1695
+ province_id = 2499
1696
+ province_id = 2021
1697
+ province_id = 730
1698
+ province_id = 1507
1699
+ province_id = 2526
1700
+ province_id = 1551
1701
+ province_id = 677
1702
+ province_id = 679
1703
+ province_id = 584
1704
+ province_id = 1365
1705
+ province_id = 1371
1706
+ province_id = 1397
1707
+ province_id = 1997
1708
+ province_id = 1411
1709
+ province_id = 1376
1710
+ province_id = 684
1711
+ province_id = 700
1712
+ province_id = 4233
1713
+ province_id = 1357
1714
+ province_id = 1064
1715
+ province_id = 707
1716
+ province_id = 1361
1717
+ province_id = 1343
1718
+ province_id = 524
1719
+ province_id = 507
1720
+ province_id = 1948
1721
+ province_id = 1340
1722
+ province_id = 504
1723
+ province_id = 1149
1724
+ province_id = 2772
1725
+ province_id = 4346
1726
+ province_id = 1334
1727
+ province_id = 1448
1728
+ province_id = 1460
1729
+ province_id = 1335
1730
+ province_id = 454
1731
+ province_id = 4341
1732
+ province_id = 377
1733
+ province_id = 358
1734
+ province_id = 464
1735
+ province_id = 1322
1736
+ province_id = 1320
1737
+ province_id = 280
1738
+ province_id = 1082
1739
+ province_id = 33
1740
+ province_id = 800
1741
+ province_id = 1536
1742
+ province_id = 809
1743
+ province_id = 1531
1744
+ province_id = 1132
1745
+ province_id = 1466
1746
+ province_id = 341
1747
+ province_id = 137
1748
+ province_id = 1110
1749
+ province_id = 153
1750
+ province_id = 262
1751
+ province_id = 134
1752
+ province_id = 61
1753
+ province_id = 1926
1754
+ province_id = 1876
1755
+ province_id = 835
1756
+ province_id = 1516
1757
+ province_id = 1500
1758
+ province_id = 1486
1759
+ province_id = 1490
1760
+ province_id = 1652
1761
+ province_id = 1975
1762
+ province_id = 45
1763
+ province_id = 1276
1764
+ province_id = 1293
1765
+ province_id = 186
1766
+ province_id = 1295
1767
+ province_id = 1298
1768
+ province_id = 1308
1769
+ province_id = 1269
1770
+ }
1771
+ }
1772
+ }
1773
+
1774
+ is_inland_trade_node_province = {
1775
+ custom_trigger_tooltip = {
1776
+ tooltip = is_inland_trade_node_province_tt
1777
+ OR = {
1778
+ province_id = 4064
1779
+ province_id = 4097
1780
+ province_id = 1191
1781
+ province_id = 2526
1782
+ province_id = 677
1783
+ province_id = 679
1784
+ province_id = 700
1785
+ province_id = 1064
1786
+ province_id = 707
1787
+ province_id = 524
1788
+ province_id = 507
1789
+ province_id = 1948
1790
+ province_id = 1149
1791
+ province_id = 2772
1792
+ province_id = 454
1793
+ province_id = 4341
1794
+ province_id = 464
1795
+ province_id = 280
1796
+ province_id = 1082
1797
+ province_id = 1132
1798
+ province_id = 153
1799
+ province_id = 262
1800
+ province_id = 134
1801
+ province_id = 61
1802
+ province_id = 1876
1803
+ province_id = 186
1804
+ }
1805
+ }
1806
+ }
1807
+
1808
+ is_not_inland_trade_node_province = {
1809
+ custom_trigger_tooltip = {
1810
+ tooltip = is_not_inland_trade_node_province_tt
1811
+ NOT = { province_id = 4064 }
1812
+ NOT = { province_id = 4097 }
1813
+ NOT = { province_id = 1191 }
1814
+ NOT = { province_id = 2526 }
1815
+ NOT = { province_id = 677 }
1816
+ NOT = { province_id = 679 }
1817
+ NOT = { province_id = 700 }
1818
+ NOT = { province_id = 1064 }
1819
+ NOT = { province_id = 707 }
1820
+ NOT = { province_id = 524 }
1821
+ NOT = { province_id = 507 }
1822
+ NOT = { province_id = 1948 }
1823
+ NOT = { province_id = 1149 }
1824
+ NOT = { province_id = 2772 }
1825
+ NOT = { province_id = 454 }
1826
+ NOT = { province_id = 4341 }
1827
+ NOT = { province_id = 464 }
1828
+ NOT = { province_id = 280 }
1829
+ NOT = { province_id = 1082 }
1830
+ NOT = { province_id = 1132 }
1831
+ NOT = { province_id = 153 }
1832
+ NOT = { province_id = 262 }
1833
+ NOT = { province_id = 134 }
1834
+ NOT = { province_id = 61 }
1835
+ NOT = { province_id = 1876 }
1836
+ NOT = { province_id = 186 }
1837
+ }
1838
+ }
1839
+
1840
+ #Province scope
1841
+ is_european_trade_node_province = {
1842
+ OR = {
1843
+ province_id = 1293
1844
+ province_id = 1295
1845
+ province_id = 1298
1846
+ province_id = 1308
1847
+ province_id = 137
1848
+ province_id = 1320
1849
+ province_id = 1322
1850
+ province_id = 280
1851
+ province_id = 153
1852
+ province_id = 134
1853
+ province_id = 61
1854
+ province_id = 45
1855
+ province_id = 1876
1856
+ province_id = 186
1857
+ province_id = 1269
1858
+ province_id = 1276
1859
+ province_id = 1975
1860
+ province_id = 1926
1861
+ province_id = 33
1862
+ province_id = 1652
1863
+ province_id = 1082
1864
+ province_id = 464
1865
+ province_id = 262
1866
+ }
1867
+ }
1868
+
1869
+ european_trade_node_scope = {
1870
+ 1293 = { $trigger$ }
1871
+ 1295 = { $trigger$ }
1872
+ 1298 = { $trigger$ }
1873
+ 1308 = { $trigger$ }
1874
+ 137 = { $trigger$ }
1875
+ 1320 = { $trigger$ }
1876
+ 1322 = { $trigger$ }
1877
+ 280 = { $trigger$ }
1878
+ 153 = { $trigger$ }
1879
+ 134 = { $trigger$ }
1880
+ 61 = { $trigger$ }
1881
+ 45 = { $trigger$ }
1882
+ 1876 = { $trigger$ }
1883
+ 186 = { $trigger$ }
1884
+ 1269 = { $trigger$ }
1885
+ 1276 = { $trigger$ }
1886
+ 1975 = { $trigger$ }
1887
+ 1926 = { $trigger$ }
1888
+ 33 = { $trigger$ }
1889
+ 1652 = { $trigger$ }
1890
+ 1082 = { $trigger$ }
1891
+ 464 = { $trigger$ }
1892
+ 262 = { $trigger$ }
1893
+ }
1894
+
1895
+ #Province scope
1896
+ is_indian_trade_node_province = {
1897
+ OR = {
1898
+ province_id = 504
1899
+ province_id = 507
1900
+ province_id = 524
1901
+ province_id = 1343
1902
+ province_id = 1948
1903
+ province_id = 1340
1904
+ }
1905
+ }
1906
+
1907
+ #Province scope
1908
+ is_african_trade_node_province = {
1909
+ OR = {
1910
+ province_id = 4097
1911
+ province_id = 4064
1912
+ province_id = 1191
1913
+ province_id = 1448
1914
+ province_id = 4346
1915
+ province_id = 2772
1916
+ province_id = 358
1917
+ province_id = 1460
1918
+ province_id = 1466
1919
+ province_id = 1149
1920
+ province_id = 1132
1921
+ province_id = 341
1922
+ province_id = 1110
1923
+ }
1924
+ }
1925
+
1926
+ #Province scope
1927
+ is_american_trade_node_province = {
1928
+ OR = {
1929
+ province_id = 1490
1930
+ province_id = 1486
1931
+ province_id = 2526
1932
+ province_id = 1500
1933
+ province_id = 1507
1934
+ province_id = 2499
1935
+ province_id = 1551
1936
+ province_id = 1516
1937
+ province_id = 4637
1938
+ province_id = 835
1939
+ province_id = 2935
1940
+ province_id = 809
1941
+ province_id = 800
1942
+ province_id = 1531
1943
+ province_id = 1536
1944
+ province_id = 2868
1945
+ }
1946
+ }
1947
+
1948
+ #Needed for the Russian dynamic mission...
1949
+ is_in_persian_trade_node = {
1950
+ OR = {
1951
+ area = shirvan_area
1952
+ area = armenia_area
1953
+ area = tabriz_area
1954
+ area = tabarestan_area
1955
+ area = azerbaijan_area
1956
+ area = iraq_e_ajam_area
1957
+ area = isfahan_area
1958
+ area = birjand_area
1959
+ area = sistan_area
1960
+ area = herat_area
1961
+ area = mashhad_area
1962
+ }
1963
+ }
1964
+
1965
+ has_any_colonist_idea = {
1966
+ OR = {
1967
+ has_idea = colonial_ventures
1968
+ has_idea = additional_colonists
1969
+ has_idea = general_colonization_law
1970
+ has_idea = pioneer_spirit
1971
+ has_idea = manifest_destiny
1972
+ has_idea = settling_the_interior
1973
+ has_idea = cab_carib_seafaring
1974
+ has_idea = lon_conquistadores
1975
+ has_idea = nzh_expand_to_the_east
1976
+ has_idea = hdr_distant_diplomacy #Colonist is in the ambition
1977
+ has_idea = AUS_outback_stations
1978
+ has_idea = NZL_pokarekare_ana #Colonist is in the ambition
1979
+ has_idea = WSI_Colonial_Legacy #Colonist is in the ambition
1980
+ has_idea = asu_colonialism
1981
+ has_idea = adu_expeditionary_sentiment
1982
+ has_idea = ICE_nationalism #Colonist is in the ambition
1983
+ has_idea = maj_nusa_tenggara
1984
+ }
1985
+ }
1986
+
1987
+ has_completed_idea_group_of_category = {
1988
+ [[adm_ideas]
1989
+ custom_trigger_tooltip = {
1990
+ tooltip = has_completed_one_adm_idea_group
1991
+ OR = {
1992
+ full_idea_group = innovativeness_ideas
1993
+ full_idea_group = religious_ideas
1994
+ full_idea_group = economic_ideas
1995
+ full_idea_group = expansion_ideas
1996
+ full_idea_group = administrative_ideas
1997
+ full_idea_group = humanist_ideas
1998
+ full_idea_group = infrastructure_ideas
1999
+ }
2000
+ }
2001
+ ]
2002
+ [[dip_ideas]
2003
+ custom_trigger_tooltip = {
2004
+ tooltip = has_completed_one_dip_idea_group
2005
+ OR = {
2006
+ full_idea_group = spy_ideas
2007
+ full_idea_group = diplomatic_ideas
2008
+ full_idea_group = trade_ideas
2009
+ full_idea_group = exploration_ideas
2010
+ full_idea_group = maritime_ideas
2011
+ full_idea_group = influence_ideas
2012
+ full_idea_group = court_ideas
2013
+ }
2014
+ }
2015
+ ]
2016
+ [[mil_ideas]
2017
+ custom_trigger_tooltip = {
2018
+ tooltip = has_completed_one_mil_idea_group
2019
+ OR = {
2020
+ full_idea_group = aristocracy_ideas
2021
+ full_idea_group = offensive_ideas
2022
+ full_idea_group = defensive_ideas
2023
+ full_idea_group = quality_ideas
2024
+ full_idea_group = quantity_ideas
2025
+ full_idea_group = naval_ideas
2026
+ full_idea_group = theocracy_gov_ideas
2027
+ full_idea_group = indigenous_ideas
2028
+ full_idea_group = horde_gov_ideas
2029
+ full_idea_group = plutocracy_ideas
2030
+ full_idea_group = mercenary_ideas
2031
+ }
2032
+ }
2033
+ ]
2034
+ }
2035
+
2036
+ num_of_completed_idea_groups_adm = {
2037
+ calc_true_if = {
2038
+ desc = num_of_completed_idea_groups_adm_tt
2039
+ full_idea_group = innovativeness_ideas
2040
+ full_idea_group = religious_ideas
2041
+ full_idea_group = economic_ideas
2042
+ full_idea_group = expansion_ideas
2043
+ full_idea_group = administrative_ideas
2044
+ full_idea_group = humanist_ideas
2045
+ full_idea_group = infrastructure_ideas
2046
+ amount = $amount$
2047
+ }
2048
+ }
2049
+
2050
+ num_of_completed_idea_groups_dip = {
2051
+ calc_true_if = {
2052
+ desc = num_of_completed_idea_groups_dip_tt
2053
+ full_idea_group = spy_ideas
2054
+ full_idea_group = diplomatic_ideas
2055
+ full_idea_group = trade_ideas
2056
+ full_idea_group = exploration_ideas
2057
+ full_idea_group = maritime_ideas
2058
+ full_idea_group = influence_ideas
2059
+ full_idea_group = court_ideas
2060
+ amount = $amount$
2061
+ }
2062
+ }
2063
+
2064
+ num_of_completed_idea_groups_mil = {
2065
+ calc_true_if = {
2066
+ desc = num_of_completed_idea_groups_mil_tt
2067
+ full_idea_group = aristocracy_ideas
2068
+ full_idea_group = offensive_ideas
2069
+ full_idea_group = defensive_ideas
2070
+ full_idea_group = quality_ideas
2071
+ full_idea_group = quantity_ideas
2072
+ full_idea_group = naval_ideas
2073
+ full_idea_group = theocracy_gov_ideas
2074
+ full_idea_group = indigenous_ideas
2075
+ full_idea_group = horde_gov_ideas
2076
+ full_idea_group = plutocracy_ideas
2077
+ full_idea_group = mercenary_ideas
2078
+ amount = $amount$
2079
+ }
2080
+ }
2081
+
2082
+ num_of_completed_idea_groups_by_category = {
2083
+ num_of_completed_idea_groups_$type$ = { amount = $amount$ }
2084
+ }
2085
+
2086
+ has_religion_of_increased_opinion_for_scope = {
2087
+ OR = {
2088
+ AND = { religion = catholic $who$ = { has_country_flag = has_increased_catholic_opinion } }
2089
+ AND = { religion = anglican $who$ = { has_country_flag = has_increased_anglican_opinion } }
2090
+ AND = { religion = hussite $who$ = { has_country_flag = has_increased_hussite_opinion } }
2091
+ AND = { religion = protestant $who$ = { has_country_flag = has_increased_protestant_opinion } }
2092
+ AND = { religion = reformed $who$ = { has_country_flag = has_increased_reformed_opinion } }
2093
+ AND = { religion = orthodox $who$ = { has_country_flag = has_increased_orthodox_opinion } }
2094
+ AND = { religion = coptic $who$ = { has_country_flag = has_increased_coptic_opinion } }
2095
+ AND = { religion = sunni $who$ = { has_country_flag = has_increased_sunni_opinion } }
2096
+ AND = { religion = shiite $who$ = { has_country_flag = has_increased_shiite_opinion } }
2097
+ AND = { religion = ibadi $who$ = { has_country_flag = has_increased_ibadi_opinion } }
2098
+ AND = { religion = buddhism $who$ = { has_country_flag = has_increased_buddhism_opinion } }
2099
+ AND = { religion = vajrayana $who$ = { has_country_flag = has_increased_vajrayana_opinion } }
2100
+ AND = { religion = mahayana $who$ = { has_country_flag = has_increased_mahayana_opinion } }
2101
+ AND = { religion = confucianism $who$ = { has_country_flag = has_increased_confucianism_opinion } }
2102
+ AND = { religion = shinto $who$ = { has_country_flag = has_increased_shinto_opinion } }
2103
+ AND = { religion = hinduism $who$ = { has_country_flag = has_increased_hinduism_opinion } }
2104
+ AND = { religion = sikhism $who$ = { has_country_flag = has_increased_sikhism_opinion } }
2105
+ AND = { religion = animism $who$ = { has_country_flag = has_increased_animism_opinion } }
2106
+ AND = { religion = shamanism $who$ = { has_country_flag = has_increased_shamanism_opinion } }
2107
+ AND = { religion = totemism $who$ = { has_country_flag = has_increased_totemism_opinion } }
2108
+ AND = { religion = inti $who$ = { has_country_flag = has_increased_inti_opinion } }
2109
+ AND = { religion = nahuatl $who$ = { has_country_flag = has_increased_nahuatl_opinion } }
2110
+ AND = { religion = mesoamerican_religion $who$ = { has_country_flag = has_increased_mesoamerican_religion_opinion } }
2111
+ AND = { religion = norse_pagan_reformed $who$ = { has_country_flag = has_increased_norse_pagan_reformed_opinion } }
2112
+ AND = { religion = tengri_pagan_reformed $who$ = { has_country_flag = has_increased_tengri_pagan_reformed_opinion } }
2113
+ AND = { religion = dreamtime $who$ = { has_country_flag = has_increased_dreamtime_opinion } }
2114
+ AND = { religion = jewish $who$ = { has_country_flag = has_increased_jewish_opinion } }
2115
+ AND = { religion = zoroastrian $who$ = { has_country_flag = has_increased_zoroastrian_opinion } }
2116
+ }
2117
+ }
2118
+
2119
+ reverse_has_religion_of_increased_opinion_for_scope = {
2120
+ OR = {
2121
+ AND = { $who$ = { religion = catholic } has_country_flag = has_increased_catholic_opinion }
2122
+ AND = { $who$ = { religion = anglican } has_country_flag = has_increased_anglican_opinion }
2123
+ AND = { $who$ = { religion = hussite } has_country_flag = has_increased_hussite_opinion }
2124
+ AND = { $who$ = { religion = protestant } has_country_flag = has_increased_protestant_opinion }
2125
+ AND = { $who$ = { religion = reformed } has_country_flag = has_increased_reformed_opinion }
2126
+ AND = { $who$ = { religion = orthodox } has_country_flag = has_increased_orthodox_opinion }
2127
+ AND = { $who$ = { religion = coptic } has_country_flag = has_increased_coptic_opinion }
2128
+ AND = { $who$ = { religion = sunni } has_country_flag = has_increased_sunni_opinion }
2129
+ AND = { $who$ = { religion = shiite } has_country_flag = has_increased_shiite_opinion }
2130
+ AND = { $who$ = { religion = ibadi } has_country_flag = has_increased_ibadi_opinion }
2131
+ AND = { $who$ = { religion = buddhism } has_country_flag = has_increased_buddhism_opinion }
2132
+ AND = { $who$ = { religion = vajrayana } has_country_flag = has_increased_vajrayana_opinion }
2133
+ AND = { $who$ = { religion = mahayana } has_country_flag = has_increased_mahayana_opinion }
2134
+ AND = { $who$ = { religion = confucianism } has_country_flag = has_increased_confucianism_opinion }
2135
+ AND = { $who$ = { religion = shinto } has_country_flag = has_increased_shinto_opinion }
2136
+ AND = { $who$ = { religion = hinduism } has_country_flag = has_increased_hinduism_opinion }
2137
+ AND = { $who$ = { religion = sikhism } has_country_flag = has_increased_sikhism_opinion }
2138
+ AND = { $who$ = { religion = animism } has_country_flag = has_increased_animism_opinion }
2139
+ AND = { $who$ = { religion = shamanism } has_country_flag = has_increased_shamanism_opinion }
2140
+ AND = { $who$ = { religion = totemism } has_country_flag = has_increased_totemism_opinion }
2141
+ AND = { $who$ = { religion = inti } has_country_flag = has_increased_inti_opinion }
2142
+ AND = { $who$ = { religion = nahuatl } has_country_flag = has_increased_nahuatl_opinion }
2143
+ AND = { $who$ = { religion = mesoamerican_religion } has_country_flag = has_increased_mesoamerican_religion_opinion }
2144
+ AND = { $who$ = { religion = norse_pagan_reformed } has_country_flag = has_increased_norse_pagan_reformed_opinion }
2145
+ AND = { $who$ = { religion = tengri_pagan_reformed } has_country_flag = has_increased_tengri_pagan_reformed_opinion }
2146
+ AND = { $who$ = { religion = dreamtime } has_country_flag = has_increased_dreamtime_opinion }
2147
+ AND = { $who$ = { religion = jewish } has_country_flag = has_increased_jewish_opinion }
2148
+ AND = { $who$ = { religion = zoroastrian } has_country_flag = has_increased_zoroastrian_opinion }
2149
+ }
2150
+ }
2151
+
2152
+ mal_will_accept_offer = {
2153
+ $province$ = {
2154
+ owner = {
2155
+ OR = {
2156
+ alliance_with = ROOT
2157
+ is_subject_of = ROOT
2158
+ has_opinion = {
2159
+ who = ROOT
2160
+ value = 100
2161
+ }
2162
+ }
2163
+ }
2164
+ }
2165
+ }
2166
+
2167
+ mal_very_highly_to_accept_offer = {
2168
+ $province$ = {
2169
+ owner = {
2170
+ has_opinion = {
2171
+ who = ROOT
2172
+ value = 50
2173
+ }
2174
+ }
2175
+ }
2176
+ }
2177
+
2178
+ mal_might_or_might_not_accept_offer = {
2179
+ $province$ = {
2180
+ owner = {
2181
+ has_opinion = {
2182
+ who = ROOT
2183
+ value = -50
2184
+ }
2185
+ NOT = {
2186
+ has_opinion = {
2187
+ who = ROOT
2188
+ value = 50
2189
+ }
2190
+ }
2191
+ }
2192
+ }
2193
+ }
2194
+
2195
+ mal_very_likely_to_not_accept_offer = {
2196
+ $province$ = {
2197
+ owner = {
2198
+ NOT = {
2199
+ has_opinion = {
2200
+ who = ROOT
2201
+ value = 50
2202
+ }
2203
+ }
2204
+ }
2205
+ }
2206
+ }
2207
+
2208
+ mal_will_never_accept_offer = {
2209
+ $province$ = {
2210
+ owner = {
2211
+ OR = {
2212
+ is_rival = ROOT
2213
+ is_enemy = ROOT
2214
+ NOT = {
2215
+ has_opinion = {
2216
+ who = ROOT
2217
+ value = 100
2218
+ }
2219
+ }
2220
+ }
2221
+ }
2222
+ }
2223
+ }
2224
+
2225
+ has_any_heir_cult_active = {
2226
+ OR = {
2227
+ has_country_modifier = junior_yemoja_cult
2228
+ has_country_modifier = junior_roog_cult
2229
+ has_country_modifier = junior_nyame_cult
2230
+ has_country_modifier = junior_cwezi_cult
2231
+ has_country_modifier = junior_central_african_ancestor_cult
2232
+ has_country_modifier = junior_mwari_cult
2233
+ has_country_modifier = junior_enkai_cult
2234
+ has_country_modifier = junior_waaq_cult
2235
+ has_country_modifier = junior_zanahary_cult
2236
+ has_country_modifier = junior_christianity_cult
2237
+ has_country_modifier = junior_islam_cult
2238
+ has_country_modifier = junior_buddhism_cult
2239
+ has_country_modifier = junior_dharmic_cult
2240
+ has_country_modifier = junior_south_central_american_cult
2241
+ has_country_modifier = junior_norse_cult
2242
+ has_country_modifier = junior_jewish_cult
2243
+ has_country_modifier = junior_zoroastrian_cult
2244
+ }
2245
+ }
2246
+
2247
+ gained_development_from_building = {
2248
+ has_province_flag = built_dev_$building$
2249
+ }
2250
+ gained_dev_from_eco_building = {
2251
+ has_province_flag = built_eco_dev_$building$
2252
+ }
2253
+
2254
+ gained_development_from_any_building = {
2255
+ OR = {
2256
+ has_province_flag = built_dev_marketplace
2257
+ has_province_flag = built_dev_workshop
2258
+ has_province_flag = built_dev_temple
2259
+ has_province_flag = built_dev_barracks
2260
+ has_province_flag = built_dev_shipyard
2261
+ has_province_flag = built_dev_courthouse
2262
+ has_province_flag = built_dev_dock
2263
+ has_province_flag = built_dev_regimental_camp
2264
+ has_province_flag = built_dev_cathedral
2265
+ has_province_flag = built_dev_university
2266
+ has_province_flag = built_dev_trade_depot
2267
+ has_province_flag = built_dev_grand_shipyard
2268
+ has_province_flag = built_dev_training_fields
2269
+ has_province_flag = built_dev_stock_exchange
2270
+ has_province_flag = built_dev_counting_house
2271
+ has_province_flag = built_dev_town_hall
2272
+ has_province_flag = built_dev_drydock
2273
+ has_province_flag = built_dev_conscription_center
2274
+ has_province_flag = built_dev_manufactory
2275
+ }
2276
+ }
2277
+
2278
+ has_primary_cult = {
2279
+ has_country_flag = has_$cult$_as_primary_cult
2280
+ }
2281
+
2282
+ has_a_primary_cult_selected = {
2283
+ custom_trigger_tooltip = {
2284
+ tooltip = has_a_primary_cult_selected_tt
2285
+ has_country_flag = has_selected_a_primary_cult
2286
+ }
2287
+ }
2288
+
2289
+ has_better_tech_than_westerns = {
2290
+ custom_trigger_tooltip = {
2291
+ tooltip = has_better_tech_than_westerns_tt
2292
+ NOT = {
2293
+ any_country = {
2294
+ tech_difference = 1
2295
+ technology_group = western
2296
+ NOT = { tag = ROOT }
2297
+ }
2298
+ }
2299
+ }
2300
+ }
2301
+
2302
+ has_more_institutions_than_westerns = {
2303
+ custom_trigger_tooltip = {
2304
+ tooltip = has_more_institutions_than_westerns_tt
2305
+ NOT = {
2306
+ calc_true_if = {
2307
+ all_country = {
2308
+ institution_difference = {
2309
+ who = ROOT
2310
+ value = 1
2311
+ }
2312
+ technology_group = western
2313
+ NOT = { tag = ROOT }
2314
+ }
2315
+ amount = 1
2316
+ }
2317
+ }
2318
+ }
2319
+ }
2320
+
2321
+ is_not_free_merc_company = {
2322
+ ROOT = {
2323
+ NOT = { mercenary_company = merc_hakkapeliita_cavalry }
2324
+ NOT = { mercenary_company = merc_prussian_volunteer_army }
2325
+ NOT = { mercenary_company = merc_knights_templar }
2326
+ NOT = { mercenary_company = merc_swiss_guard }
2327
+ NOT = { mercenary_company = merc_large_hakkapeliita_cavalry }
2328
+ NOT = { mercenary_company = merc_guerilla_hakkapeliita_cavalry }
2329
+ NOT = { mercenary_company = merc_elite_hakkapeliita_cavalry }
2330
+ NOT = { mercenary_company = merc_mongol_banner }
2331
+ NOT = { mercenary_company = merc_swiss_canton_mercenaries }
2332
+ NOT = { mercenary_company = merc_japanese_volunteers }
2333
+ NOT = { mercenary_company = merc_militant_order_of_saint_joan }
2334
+ NOT = { mercenary_company = merc_black_army }
2335
+ NOT = { mercenary_company = merc_black_army_2 }
2336
+ NOT = { mercenary_company = merc_tatar_vanguard }
2337
+ NOT = { mercenary_company = merc_righteous_army }
2338
+ NOT = { mercenary_company = merc_scouting_almogavars }
2339
+ NOT = { mercenary_company = merc_skirmishing_almogavars }
2340
+ NOT = { mercenary_company = merc_veteran_almogavars }
2341
+ NOT = { mercenary_company = merc_byz_varangian_guard}
2342
+ NOT = { mercenary_company = merc_byz_turkish_janissaries}
2343
+ }
2344
+ }
2345
+
2346
+ has_free_mercs_trait = {
2347
+ OR = {
2348
+ has_country_modifier = dan_sca_merc_contract
2349
+ has_idea = seasoned_veterans
2350
+ has_government_attribute = mercs_do_not_cost_army_professionalism
2351
+ has_country_flag = fra_free_mercs_bargain_sale_flag
2352
+ }
2353
+ }
2354
+
2355
+ has_not_free_mercs_trait = {
2356
+ NOT = { has_country_modifier = dan_sca_merc_contract }
2357
+ NOT = { has_idea = seasoned_veterans }
2358
+ NOT = { has_government_attribute = mercs_do_not_cost_army_professionalism }
2359
+ NOT = { has_country_flag = fra_free_mercs_bargain_sale_flag }
2360
+ }
2361
+
2362
+ ##########################################################
2363
+ # Supports following merc companies
2364
+ # merc_oyo_cavalry
2365
+ # merc_hakkapeliita_cavalry
2366
+ # merc_prussian_volunteer_army
2367
+ # merc_large_hakkapeliita_cavalry
2368
+ # merc_guerilla_hakkapeliita_cavalry
2369
+ # merc_elite_hakkapeliita_cavalry
2370
+ # merc_schwarze_garde
2371
+ # merc_hessian_jaegerkorps
2372
+ # merc_doppelsoeldner
2373
+ # merc_frisian_free_company
2374
+ # merc_flemish_company
2375
+ # merc_reislaufer
2376
+ ##########################################################
2377
+ # When adding a new merc company then make sure that a unlock_$merc_company$_tt is defined in the localization
2378
+ # For localization purposes use the following line: "Has unlocked the 锟結$merc_company$锟? mercenary company."
2379
+
2380
+ has_unlocked_estate_privilege = {
2381
+ has_country_flag = unlocked_privilege_$estate_privilege$
2382
+ }
2383
+
2384
+ has_unlocked_merc_company = {
2385
+ custom_trigger_tooltip = {
2386
+ tooltip = has_unlocked_$merc_company$
2387
+ has_country_flag = unlocked_$merc_company$
2388
+ }
2389
+ }
2390
+
2391
+ ##########################################################
2392
+ # Supports following merc companies
2393
+ ##########################################################
2394
+ # When adding a new merc company then make sure that a unlock_$merc_company$_tt is defined in the localization
2395
+ # For localization purposes use the following line: "The 锟結$merc_company$锟? mercenary company has been globally unlocked."
2396
+ has_globally_unlocked_merc_company = {
2397
+ custom_trigger_tooltip = {
2398
+ tooltip = has_globally_unlocked_$merc_company$
2399
+ has_global_flag = global_unlocked_$merc_company$
2400
+ }
2401
+
2402
+ }
2403
+
2404
+ has_unlocked_government_reform = {
2405
+ has_country_flag = unlocked_$government_reform$
2406
+ }
2407
+
2408
+ #This trigger is used for enabled estates which should be active, but can naturally disappear (like through revolutions)
2409
+ has_unlocked_estate = {
2410
+ has_country_flag = unlocked_$estate$_flag
2411
+ }
2412
+
2413
+ #This trigger is used for enabled estates which should be active at all time, no matter what
2414
+ has_enabled_estate = {
2415
+ has_country_flag = enables_$estate$_flag
2416
+ }
2417
+
2418
+ has_disabled_estate = {
2419
+ has_country_flag = disables_$estate$_flag
2420
+ }
2421
+
2422
+ #### Supports the following government reforms ####
2423
+ # prussian_monarchy
2424
+ # prussian_monarchy_base
2425
+ # prussian_republic_reform
2426
+ # prussian_theocratic_reform
2427
+ # livonian_military_monarchy
2428
+ # livonian_naval_monarchy
2429
+ # livonian_trade_monarchy
2430
+ # livonian_theocratic_monarchy
2431
+ # livonian_elective_monarchy
2432
+ # livonian_monarchy
2433
+ # livonian_mercenary_monarchy
2434
+ # livonian_diplomatic_monarchy
2435
+ # livonian_constitutional_monarchy
2436
+ # livonian_administrative_monarchy
2437
+ # livonian_admiral_monarchy
2438
+ # livonian_naval_controlled_monarchy
2439
+ # livonian_general_controlled_monarchy
2440
+ # livonian_absolute_monarchy
2441
+ # livonian_enlightened_monarchy
2442
+ has_unlocked_government_reform_tooltip = {
2443
+ custom_trigger_tooltip = {
2444
+ tooltip = unlocked_$government_reform$_tt
2445
+ has_country_flag = unlocked_$government_reform$
2446
+ }
2447
+ }
2448
+
2449
+ mal_target_country_exists_in_region = {
2450
+ OR = {
2451
+ AND = { has_country_flag = mal_journey_to_maghreb any_country = { capital_scope = { region = maghreb_region } } }
2452
+ AND = { has_country_flag = mal_journey_to_iberia any_country = { capital_scope = { region = iberia_region } } }
2453
+ AND = { has_country_flag = mal_journey_to_france any_country = { capital_scope = { region = france_region } } }
2454
+ AND = { has_country_flag = mal_journey_to_italy any_country = { capital_scope = { region = italy_region } } }
2455
+ AND = { has_country_flag = mal_journey_to_south_germany any_country = { capital_scope = { region = south_german_region } } }
2456
+ AND = { has_country_flag = mal_journey_to_balkans any_country = { capital_scope = { region = balkan_region } } }
2457
+ AND = { has_country_flag = mal_journey_to_anatolia any_country = { capital_scope = { region = anatolia_region } } }
2458
+ AND = { has_country_flag = mal_journey_to_mashriq any_country = { capital_scope = { region = mashriq_region } } }
2459
+ AND = { has_country_flag = mal_journey_to_egypt any_country = { capital_scope = { region = egypt_region } } }
2460
+ AND = { has_country_flag = mal_journey_to_arabia any_country = { capital_scope = { region = arabia_region } } }
2461
+ AND = { has_country_flag = mal_journey_to_horn_of_africa any_country = { capital_scope = { region = horn_of_africa_region } } }
2462
+ }
2463
+ }
2464
+
2465
+ mal_owns_provinces_in_region = {
2466
+ OR = {
2467
+ AND = { has_country_flag = mal_journey_to_maghreb any_owned_province = { region = maghreb_region } }
2468
+ AND = { has_country_flag = mal_journey_to_iberia any_owned_province = { region = iberia_region } }
2469
+ AND = { has_country_flag = mal_journey_to_france any_owned_province = { region = france_region } }
2470
+ AND = { has_country_flag = mal_journey_to_italy any_owned_province = { region = italy_region } }
2471
+ AND = { has_country_flag = mal_journey_to_south_germany any_owned_province = { region = south_german_region } }
2472
+ AND = { has_country_flag = mal_journey_to_balkans any_owned_province = { region = balkan_region } }
2473
+ AND = { has_country_flag = mal_journey_to_anatolia any_owned_province = { region = anatolia_region } }
2474
+ AND = { has_country_flag = mal_journey_to_mashriq any_owned_province = { region = mashriq_region } }
2475
+ AND = { has_country_flag = mal_journey_to_egypt any_owned_province = { region = egypt_region } }
2476
+ AND = { has_country_flag = mal_journey_to_arabia any_owned_province = { region = arabia_region } }
2477
+ AND = { has_country_flag = mal_journey_to_horn_of_africa any_owned_province = { region = horn_of_africa_region } }
2478
+ }
2479
+ }
2480
+
2481
+ province_is_or_accepts_culture = {
2482
+ OR = {
2483
+ has_owner_culture = yes
2484
+ has_owner_accepted_culture = yes
2485
+ }
2486
+ }
2487
+
2488
+ #Buddhism is its own can of worms due to the so many aspects of it
2489
+ #This was one of the few moments where it was almost worth considering putting Buddhism in its own religion group - almost
2490
+ province_is_buddhist_or_accepts_buddhism = {
2491
+ OR = {
2492
+ custom_trigger_tooltip = {
2493
+ tooltip = province_is_buddhist_or_accepts_buddhism_at
2494
+ OR = {
2495
+ AND = {
2496
+ religion = buddhism
2497
+ OR = {
2498
+ has_owner_religion = yes
2499
+ owner = { has_harmonized_with = buddhism }
2500
+ owner = { secondary_religion = buddhism }
2501
+ }
2502
+ }
2503
+ AND = {
2504
+ religion = vajrayana
2505
+ OR = {
2506
+ has_owner_religion = yes
2507
+ owner = { has_harmonized_with = vajrayana }
2508
+ owner = { secondary_religion = vajrayana }
2509
+ }
2510
+ }
2511
+ AND = {
2512
+ religion = mahayana
2513
+ OR = {
2514
+ has_owner_religion = yes
2515
+ owner = { has_harmonized_with = mahayana }
2516
+ owner = { secondary_religion = mahayana }
2517
+ }
2518
+ }
2519
+ }
2520
+ }
2521
+ custom_trigger_tooltip = {
2522
+ tooltip = province_is_buddhist_or_accepts_buddhism_bt
2523
+ owner = {
2524
+ OR = {
2525
+ has_harmonized_with = buddhism
2526
+ has_harmonized_with = vajrayana
2527
+ has_harmonized_with = mahayana
2528
+ }
2529
+ }
2530
+ has_owner_religion = yes
2531
+ }
2532
+ custom_trigger_tooltip = {
2533
+ tooltip = province_is_buddhist_or_accepts_buddhism_ct
2534
+ owner = {
2535
+ OR = {
2536
+ secondary_religion = buddhism
2537
+ secondary_religion = vajrayana
2538
+ secondary_religion = mahayana
2539
+ }
2540
+ }
2541
+ has_owner_religion = yes
2542
+ }
2543
+ custom_trigger_tooltip = {
2544
+ tooltip = province_is_buddhist_or_accepts_buddhism_dt
2545
+ religion = shinto
2546
+ has_owner_religion = yes
2547
+ }
2548
+ custom_trigger_tooltip = {
2549
+ tooltip = province_is_buddhist_or_accepts_buddhism_et
2550
+ owner = { has_personal_deity = buddha }
2551
+ has_owner_religion = yes
2552
+ }
2553
+ custom_trigger_tooltip = {
2554
+ tooltip = province_is_buddhist_or_accepts_buddhism_ft
2555
+ owner = { has_adopted_cult = buddhism_cult }
2556
+ has_owner_religion = yes
2557
+ }
2558
+ #For the case the province has a religion which the player has already harmonized with and cannot convert
2559
+ #It's a hidden trigger because the tooltip is already super flooded and it is incredibly niche
2560
+ hidden_trigger = {
2561
+ owner = {
2562
+ OR = {
2563
+ has_harmonized_with = buddhism
2564
+ has_harmonized_with = vajrayana
2565
+ has_harmonized_with = mahayana
2566
+ }
2567
+ has_harmonized_with = ROOT
2568
+ }
2569
+ }
2570
+ }
2571
+ }
2572
+
2573
+ #Had to make a new scripted trigger or otherwise the conditions looks too cluttered...
2574
+ province_is_buddhist_or_accepts_buddhism_or_is_dharmic = {
2575
+ OR = {
2576
+ custom_trigger_tooltip = {
2577
+ tooltip = province_is_buddhist_or_accepts_buddhism_at
2578
+ OR = {
2579
+ AND = {
2580
+ religion = buddhism
2581
+ OR = {
2582
+ has_owner_religion = yes
2583
+ owner = { has_harmonized_with = buddhism }
2584
+ owner = { secondary_religion = buddhism }
2585
+ }
2586
+ }
2587
+ AND = {
2588
+ religion = vajrayana
2589
+ OR = {
2590
+ has_owner_religion = yes
2591
+ owner = { has_harmonized_with = vajrayana }
2592
+ owner = { secondary_religion = vajrayana }
2593
+ }
2594
+ }
2595
+ AND = {
2596
+ religion = mahayana
2597
+ OR = {
2598
+ has_owner_religion = yes
2599
+ owner = { has_harmonized_with = mahayana }
2600
+ owner = { secondary_religion = mahayana }
2601
+ }
2602
+ }
2603
+ }
2604
+ }
2605
+ custom_trigger_tooltip = {
2606
+ tooltip = province_is_buddhist_or_accepts_buddhism_bt
2607
+ owner = {
2608
+ OR = {
2609
+ has_harmonized_with = buddhism
2610
+ has_harmonized_with = vajrayana
2611
+ has_harmonized_with = mahayana
2612
+ }
2613
+ }
2614
+ has_owner_religion = yes
2615
+ }
2616
+ custom_trigger_tooltip = {
2617
+ tooltip = province_is_buddhist_or_accepts_buddhism_ct
2618
+ owner = {
2619
+ OR = {
2620
+ secondary_religion = buddhism
2621
+ secondary_religion = vajrayana
2622
+ secondary_religion = mahayana
2623
+ }
2624
+ }
2625
+ has_owner_religion = yes
2626
+ }
2627
+ custom_trigger_tooltip = {
2628
+ tooltip = province_is_buddhist_or_accepts_buddhism_dt
2629
+ religion = shinto
2630
+ has_owner_religion = yes
2631
+ }
2632
+ custom_trigger_tooltip = {
2633
+ tooltip = province_is_buddhist_or_accepts_buddhism_et
2634
+ owner = { has_personal_deity = buddha }
2635
+ has_owner_religion = yes
2636
+ }
2637
+ custom_trigger_tooltip = {
2638
+ tooltip = province_is_buddhist_or_accepts_buddhism_ft
2639
+ owner = { has_adopted_cult = buddhism_cult }
2640
+ has_owner_religion = yes
2641
+ }
2642
+ #For the case the province has a religion which the player has already harmonized with and cannot convert
2643
+ #It's a hidden trigger because the tooltip is already super flooded and it is incredibly niche
2644
+ hidden_trigger = {
2645
+ owner = {
2646
+ OR = {
2647
+ has_harmonized_with = buddhism
2648
+ has_harmonized_with = vajrayana
2649
+ has_harmonized_with = mahayana
2650
+ }
2651
+ has_harmonized_with = ROOT
2652
+ }
2653
+ }
2654
+ province_is_or_accepts_religion_group = {
2655
+ religion_group = dharmic
2656
+ }
2657
+ }
2658
+ }
2659
+
2660
+ province_is_or_accepts_religion_group = {
2661
+ custom_trigger_tooltip = {
2662
+ tooltip = province_is_or_accepts_$religion_group$_tt
2663
+ OR = {
2664
+ AND = {
2665
+ religion_group = $religion_group$
2666
+ has_owner_religion = yes
2667
+ }
2668
+ AND = {
2669
+ owner = { secondary_religion_group = $religion_group$ }
2670
+ OR = {
2671
+ religion_group = $religion_group$
2672
+ has_owner_religion = yes
2673
+ }
2674
+ }
2675
+ }
2676
+ }
2677
+ }
2678
+
2679
+ province_is_or_accepts_religion = {
2680
+ custom_trigger_tooltip = {
2681
+ tooltip = province_is_or_accepts_$religion$_tt
2682
+ OR = {
2683
+ AND = {
2684
+ religion = $religion$
2685
+ has_owner_religion = yes
2686
+ }
2687
+ AND = {
2688
+ owner = { secondary_religion = $religion$ }
2689
+ OR = {
2690
+ religion = $religion$
2691
+ has_owner_religion = yes
2692
+ }
2693
+ }
2694
+ }
2695
+ }
2696
+ }
2697
+
2698
+ has_not_any_exploration_ideas = {
2699
+ NOT = { has_idea = quest_for_the_new_world }
2700
+ NOT = { has_idea = call_of_our_forefathers }
2701
+ NOT = { has_idea = tonga_oceanic_empire }
2702
+ NOT = { has_idea = samoa_trade }
2703
+ NOT = { has_idea = legendary_voyagers }
2704
+ NOT = { has_idea_group = ICE_ideas }
2705
+ }
2706
+
2707
+ has_any_exploration_idea = {
2708
+ OR = {
2709
+ has_idea = quest_for_the_new_world
2710
+ has_idea = call_of_our_forefathers
2711
+ has_idea = tonga_oceanic_empire
2712
+ has_idea = samoa_trade
2713
+ has_idea = legendary_voyagers
2714
+ has_idea_group = ICE_ideas
2715
+ }
2716
+ }
2717
+
2718
+ ###HAS ANY TRADE GOODS IMPORTANT FOR THE MANUFACTORIES###
2719
+ #For Wharf manufactories
2720
+ has_wharf_trade_goods = {
2721
+ OR = {
2722
+ trade_goods = salt
2723
+ trade_goods = fish
2724
+ trade_goods = naval_supplies
2725
+ }
2726
+ }
2727
+
2728
+ #For Weapons manufactories
2729
+ has_weapons_trade_goods = {
2730
+ OR = {
2731
+ trade_goods = copper
2732
+ trade_goods = iron
2733
+ }
2734
+ }
2735
+
2736
+ #For Textile manufactories
2737
+ has_textile_trade_goods = {
2738
+ OR = {
2739
+ trade_goods = wool
2740
+ trade_goods = cloth
2741
+ trade_goods = silk
2742
+ trade_goods = dyes
2743
+ }
2744
+ }
2745
+
2746
+ #For Plantation manufactories
2747
+ has_plantation_trade_goods = {
2748
+ OR = {
2749
+ trade_goods = coffee
2750
+ trade_goods = cotton
2751
+ trade_goods = sugar
2752
+ trade_goods = tobacco
2753
+ trade_goods = tea
2754
+ trade_goods = cocoa
2755
+ }
2756
+ }
2757
+
2758
+ #For Trade Company manufactories
2759
+ has_trade_company_trade_goods = {
2760
+ OR = {
2761
+ trade_goods = ivory
2762
+ trade_goods = slaves
2763
+ trade_goods = spices
2764
+ trade_goods = fur
2765
+ trade_goods = incense
2766
+ trade_goods = cloves
2767
+ }
2768
+ }
2769
+
2770
+ #For Farm manufactories
2771
+ has_farm_trade_goods = {
2772
+ OR = {
2773
+ trade_goods = grain
2774
+ trade_goods = livestock
2775
+ trade_goods = wine
2776
+ }
2777
+ }
2778
+
2779
+ #For Mills manufactories
2780
+ has_mills_trade_goods = {
2781
+ OR = {
2782
+ trade_goods = paper
2783
+ trade_goods = gems
2784
+ trade_goods = tropical_wood
2785
+ trade_goods = glass
2786
+ trade_goods = chinaware
2787
+ }
2788
+ }
2789
+
2790
+ #For special gold trade goods
2791
+ has_valuable_resource = {
2792
+ trade_goods = gold
2793
+ }
2794
+
2795
+ #country scope
2796
+ ruler_total_stats = {
2797
+ variable_arithmetic_trigger = {
2798
+ custom_tooltip = ruler_total_stats_$amount$
2799
+ export_to_variable = {
2800
+ variable_name = ruler_adm
2801
+ value = ADM
2802
+ who = ROOT
2803
+ }
2804
+ export_to_variable = {
2805
+ variable_name = ruler_dip
2806
+ value = DIP
2807
+ who = ROOT
2808
+ }
2809
+ export_to_variable = {
2810
+ variable_name = ruler_mil
2811
+ value = MIL
2812
+ who = ROOT
2813
+ }
2814
+ change_variable = {
2815
+ which = ruler_adm
2816
+ which = ruler_dip
2817
+ }
2818
+ change_variable = {
2819
+ which = ruler_adm
2820
+ which = ruler_mil
2821
+ }
2822
+ check_variable = {
2823
+ which = ruler_adm
2824
+ value = $amount$
2825
+ }
2826
+ }
2827
+ }
2828
+
2829
+ ruler_total_stats_target = {
2830
+ variable_arithmetic_trigger = {
2831
+ custom_tooltip = $custom_tooltip$
2832
+ export_to_variable = {
2833
+ variable_name = ruler_adm
2834
+ value = ADM
2835
+ who = $who$
2836
+ }
2837
+ export_to_variable = {
2838
+ variable_name = ruler_dip
2839
+ value = DIP
2840
+ who = $who$
2841
+ }
2842
+ export_to_variable = {
2843
+ variable_name = ruler_mil
2844
+ value = MIL
2845
+ who = $who$
2846
+ }
2847
+ change_variable = {
2848
+ which = ruler_adm
2849
+ which = ruler_dip
2850
+ }
2851
+ change_variable = {
2852
+ which = ruler_adm
2853
+ which = ruler_mil
2854
+ }
2855
+ check_variable = {
2856
+ which = ruler_adm
2857
+ value = $amount$
2858
+ }
2859
+ }
2860
+ }
2861
+
2862
+ heir_total_stats = {
2863
+ variable_arithmetic_trigger = {
2864
+ custom_tooltip = heir_total_stats_$amount$
2865
+ export_to_variable = {
2866
+ variable_name = heir_adm_var
2867
+ value = heir_adm
2868
+ who = ROOT
2869
+ }
2870
+ export_to_variable = {
2871
+ variable_name = heir_dip_var
2872
+ value = heir_dip
2873
+ who = ROOT
2874
+ }
2875
+ export_to_variable = {
2876
+ variable_name = heir_mil_var
2877
+ value = heir_mil
2878
+ who = ROOT
2879
+ }
2880
+ change_variable = {
2881
+ which = heir_adm_var
2882
+ which = heir_dip_var
2883
+ }
2884
+ change_variable = {
2885
+ which = heir_adm_var
2886
+ which = heir_mil_var
2887
+ }
2888
+ check_variable = {
2889
+ which = heir_adm_var
2890
+ value = $amount$
2891
+ }
2892
+ }
2893
+ }
2894
+
2895
+ heir_total_stats_target = {
2896
+ variable_arithmetic_trigger = {
2897
+ custom_tooltip = $custom_tooltip$
2898
+ export_to_variable = {
2899
+ variable_name = heir_adm_var
2900
+ value = heir_adm
2901
+ who = $who$
2902
+ }
2903
+ export_to_variable = {
2904
+ variable_name = heir_dip_var
2905
+ value = heir_dip
2906
+ who = $who$
2907
+ }
2908
+ export_to_variable = {
2909
+ variable_name = heir_mil_var
2910
+ value = heir_mil
2911
+ who = $who$
2912
+ }
2913
+ change_variable = {
2914
+ which = heir_adm_var
2915
+ which = heir_dip_var
2916
+ }
2917
+ change_variable = {
2918
+ which = heir_adm_var
2919
+ which = heir_mil_var
2920
+ }
2921
+ check_variable = {
2922
+ which = heir_adm_var
2923
+ value = $amount$
2924
+ }
2925
+ }
2926
+ }
2927
+
2928
+ consort_total_stats = {
2929
+ variable_arithmetic_trigger = {
2930
+ custom_tooltip = consort_total_stats_$amount$
2931
+ export_to_variable = {
2932
+ variable_name = consort_adm_var
2933
+ value = consort_adm
2934
+ who = ROOT
2935
+ }
2936
+ export_to_variable = {
2937
+ variable_name = consort_dip_var
2938
+ value = consort_dip
2939
+ who = ROOT
2940
+ }
2941
+ export_to_variable = {
2942
+ variable_name = consort_mil_var
2943
+ value = consort_mil
2944
+ who = ROOT
2945
+ }
2946
+ change_variable = {
2947
+ which = consort_adm_var
2948
+ which = consort_dip_var
2949
+ }
2950
+ change_variable = {
2951
+ which = consort_adm_var
2952
+ which = consort_mil_var
2953
+ }
2954
+ check_variable = {
2955
+ which = consort_adm_var
2956
+ value = $amount$
2957
+ }
2958
+ }
2959
+ }
2960
+
2961
+ consort_total_stats_target = {
2962
+ variable_arithmetic_trigger = {
2963
+ custom_tooltip = $custom_tooltip$
2964
+ export_to_variable = {
2965
+ variable_name = consort_adm_var
2966
+ value = consort_adm
2967
+ who = $who$
2968
+ }
2969
+ export_to_variable = {
2970
+ variable_name = consort_dip_var
2971
+ value = consort_dip
2972
+ who = $who$
2973
+ }
2974
+ export_to_variable = {
2975
+ variable_name = consort_mil_var
2976
+ value = consort_mil
2977
+ who = $who$
2978
+ }
2979
+ change_variable = {
2980
+ which = consort_adm_var
2981
+ which = consort_dip_var
2982
+ }
2983
+ change_variable = {
2984
+ which = consort_adm_var
2985
+ which = consort_mil_var
2986
+ }
2987
+ check_variable = {
2988
+ which = consort_adm_var
2989
+ value = $amount$
2990
+ }
2991
+ }
2992
+ }
2993
+
2994
+ num_of_ruler_traits = {
2995
+ calc_true_if = {
2996
+ desc = num_of_ruler_traits_tt
2997
+ ruler_has_personality = just_personality
2998
+ ruler_has_personality = righteous_personality
2999
+ ruler_has_personality = tolerant_personality
3000
+ ruler_has_personality = kind_hearted_personality
3001
+ ruler_has_personality = free_thinker_personality
3002
+ ruler_has_personality = well_connected_personality
3003
+ ruler_has_personality = calm_personality
3004
+ ruler_has_personality = careful_personality
3005
+ ruler_has_personality = secretive_personality
3006
+ ruler_has_personality = intricate_web_weaver_personality
3007
+ ruler_has_personality = fertile_personality
3008
+ ruler_has_personality = well_advised_personality
3009
+ ruler_has_personality = benevolent_personality
3010
+ ruler_has_personality = zealot_personality
3011
+ ruler_has_personality = pious_personality
3012
+ ruler_has_personality = lawgiver_personality
3013
+ ruler_has_personality = midas_touched_personality
3014
+ ruler_has_personality = incorruptible_personality
3015
+ ruler_has_personality = architectural_visionary_personality
3016
+ ruler_has_personality = scholar_personality
3017
+ ruler_has_personality = entrepreneur_personality
3018
+ ruler_has_personality = industrious_personality
3019
+ ruler_has_personality = expansionist_personality
3020
+ ruler_has_personality = charismatic_negotiator_personality
3021
+ ruler_has_personality = silver_tongue_personality
3022
+ ruler_has_personality = conqueror_personality
3023
+ ruler_has_personality = tactical_genius_personality
3024
+ ruler_has_personality = bold_fighter_personality
3025
+ ruler_has_personality = strict_personality
3026
+ ruler_has_personality = inspiring_leader_personality
3027
+ ruler_has_personality = martial_educator_personality
3028
+ ruler_has_personality = navigator_personality
3029
+ ruler_has_personality = fierce_negotiator_personality
3030
+ ruler_has_personality = babbling_buffoon_personality
3031
+ ruler_has_personality = embezzler_personality
3032
+ ruler_has_personality = infertile_personality
3033
+ ruler_has_personality = drunkard_personality
3034
+ ruler_has_personality = sinner_personality
3035
+ ruler_has_personality = greedy_personality
3036
+ ruler_has_personality = cruel_personality
3037
+ ruler_has_personality = naive_personality
3038
+ ruler_has_personality = craven_personality
3039
+ ruler_has_personality = loose_lips_personality
3040
+ ruler_has_personality = obsessive_perfectionist_personality
3041
+ ruler_has_personality = malevolent_personality
3042
+ ruler_has_personality = immortal_personality
3043
+ ruler_has_personality = legendary_pirate_personality
3044
+ ruler_has_personality = reformist_personality
3045
+ ruler_has_personality = legendary_conqueror_personality
3046
+ ruler_has_personality = great_engineer_personality
3047
+ ruler_has_personality = patron_of_arts_personality
3048
+ amount = $amount$
3049
+ }
3050
+ }
3051
+
3052
+ has_points_for_livonian_military_monarchy = {
3053
+ check_variable = {
3054
+ which = liv_mil
3055
+ value = 5
3056
+ }
3057
+ }
3058
+ has_points_for_livonian_naval_monarchy = {
3059
+ check_variable = {
3060
+ which = liv_dip
3061
+ value = 5
3062
+ }
3063
+ }
3064
+ has_points_for_livonian_trade_monarchy = {
3065
+ check_variable = {
3066
+ which = liv_adm
3067
+ value = 3
3068
+ }
3069
+ check_variable = {
3070
+ which = liv_dip
3071
+ value = 3
3072
+ }
3073
+ }
3074
+ has_points_for_livonian_constitutional_monarchy = {
3075
+ is_variable_equal = {
3076
+ which = liv_adm
3077
+ value = 3
3078
+ }
3079
+ }
3080
+ has_points_for_livonian_theocratic_monarchy = {
3081
+ check_variable = {
3082
+ which = liv_adm
3083
+ value = 3
3084
+ }
3085
+ check_variable = {
3086
+ which = liv_mil
3087
+ value = 3
3088
+ }
3089
+ }
3090
+ has_points_for_livonian_elective_monarchy = {
3091
+ check_variable = {
3092
+ which = liv_dip
3093
+ value = 3
3094
+ }
3095
+ }
3096
+ has_points_for_livonian_diplomatic_monarchy = {
3097
+ check_variable = {
3098
+ which = liv_dip
3099
+ value = 4
3100
+ }
3101
+ }
3102
+ has_points_for_livonian_administrative_monarchy = {
3103
+ check_variable = {
3104
+ which = liv_adm
3105
+ value = 5
3106
+ }
3107
+ }
3108
+ has_points_for_livonian_mercenary_monarchy = {
3109
+ check_variable = {
3110
+ which = liv_mil
3111
+ value = 3
3112
+ }
3113
+ }
3114
+ has_points_for_livonian_admiral_monarchy = {
3115
+ check_variable = {
3116
+ which = liv_dip
3117
+ value = 4
3118
+ }
3119
+ }
3120
+ has_points_for_livonian_naval_controlled_monarchy = {
3121
+ check_variable = {
3122
+ which = liv_dip
3123
+ value = 3
3124
+ }
3125
+ check_variable = {
3126
+ which = liv_mil
3127
+ value = 3
3128
+ }
3129
+ }
3130
+ has_points_for_livonian_general_controlled_monarchy = {
3131
+ check_variable = {
3132
+ which = liv_mil
3133
+ value = 4
3134
+ }
3135
+ }
3136
+ has_points_for_livonian_absolute_monarchy = {
3137
+ check_variable = {
3138
+ which = liv_adm
3139
+ value = 4
3140
+ }
3141
+ }
3142
+ has_points_for_livonian_enlightened_monarchy = {
3143
+ is_variable_equal = {
3144
+ which = liv_adm
3145
+ value = 2
3146
+ }
3147
+ is_variable_equal = {
3148
+ which = liv_dip
3149
+ value = 2
3150
+ }
3151
+ is_variable_equal = {
3152
+ which = liv_mil
3153
+ value = 2
3154
+ }
3155
+ }
3156
+
3157
+ has_points_for_livonian_monarchy = {
3158
+ has_points_for_$government_reform$ = yes
3159
+ }
3160
+
3161
+ is_allowed_to_recruit_mercenaries = {
3162
+ custom_trigger_tooltip = {
3163
+ tooltip = is_allowed_to_recruit_mercenaries_tt
3164
+ NOT = { has_country_modifier = dan_sca_refocus_on_personal_armies }
3165
+ }
3166
+ }
3167
+
3168
+ has_no_religion_specific_government_available = {
3169
+ NOT = { religion = jewish }
3170
+ NOT = { religion = zoroastrian }
3171
+ NOT = { religion = hinduism }
3172
+ NOT = { religion = sikhism }
3173
+ NOT = { religion_group = muslim }
3174
+ NOT = { religion_group = christian }
3175
+ NOT = { religion_group = eastern }
3176
+ NOT = { religion = tengri_pagan_reformed }
3177
+ NOT = { religion = shamanism }
3178
+ NOT = { religion = norse_pagan_reformed }
3179
+ }
3180
+
3181
+ #Province scope
3182
+ is_flatland = {
3183
+ custom_trigger_tooltip = {
3184
+ tooltip = is_flatland_tt
3185
+ OR = {
3186
+ has_terrain = farmlands
3187
+ has_terrain = grasslands
3188
+ has_terrain = steppe
3189
+ has_terrain = savannah
3190
+ has_terrain = drylands
3191
+ has_terrain = coastal_desert
3192
+ has_terrain = desert
3193
+ has_terrain = coastline
3194
+ }
3195
+ }
3196
+ }
3197
+
3198
+ is_yellow_river_province_trigger = {
3199
+ custom_trigger_tooltip = {
3200
+ tooltip = is_yellow_river_province_trigger_tt
3201
+ OR = {
3202
+ province_id = 4196
3203
+ province_id = 2142
3204
+ province_id = 2141
3205
+ province_id = 2176
3206
+ province_id = 688
3207
+ province_id = 1836
3208
+ province_id = 694
3209
+ province_id = 700
3210
+ }
3211
+ }
3212
+ }
3213
+
3214
+ is_yangtze_river_province_trigger = {
3215
+ custom_trigger_tooltip = {
3216
+ tooltip = is_yangtze_river_province_trigger_tt
3217
+ OR = {
3218
+ province_id = 2145
3219
+ province_id = 1821
3220
+ province_id = 1838
3221
+ province_id = 686
3222
+ province_id = 683
3223
+ province_id = 4197
3224
+ province_id = 682
3225
+ province_id = 2172
3226
+ province_id = 681
3227
+ }
3228
+ }
3229
+ }
3230
+
3231
+ is_eyalet_trigger = {
3232
+ custom_trigger_tooltip = {
3233
+ tooltip = is_eyalet_trigger_tt
3234
+ OR = {
3235
+ is_subject_of_type = eyalet
3236
+ is_subject_of_type = core_eyalet
3237
+ }
3238
+ }
3239
+ }
3240
+
3241
+ has_strong_mil_national_ideas = {
3242
+ custom_trigger_tooltip = {
3243
+ tooltip = has_strong_mil_national_ideas_tt
3244
+ OR = {
3245
+ tag = FRA
3246
+ tag = PRU
3247
+ tag = SPA
3248
+ tag = TUR
3249
+ tag = JAP
3250
+ tag = RUS
3251
+ tag = MOS
3252
+ tag = TEU
3253
+ tag = POL
3254
+ tag = PLC
3255
+ tag = ITA
3256
+ tag = GER
3257
+ tag = QNG
3258
+ tag = SWE
3259
+ tag = SCA
3260
+ tag = GBR
3261
+ tag = NED
3262
+ tag = RUM
3263
+ tag = MAM
3264
+ tag = ZIM
3265
+ tag = ZUL
3266
+ tag = ODA
3267
+ tag = SMZ
3268
+ tag = MCH
3269
+ tag = MLC
3270
+ tag = MJZ
3271
+ tag = BNG
3272
+ tag = NPL
3273
+ tag = PUN
3274
+ tag = BHA
3275
+ tag = RJP
3276
+ tag = HSA
3277
+ tag = SMO
3278
+ tag = MAS
3279
+ tag = JMN
3280
+ tag = SYN
3281
+ }
3282
+ }
3283
+ }
3284
+
3285
+ has_any_active_incomplete_idea_group_of_category = {
3286
+ [[adm_ideas]
3287
+ custom_trigger_tooltip = {
3288
+ tooltip = has_any_active_incomplete_idea_group_of_category_adm
3289
+ OR = {
3290
+ AND = { has_idea_group = innovativeness_ideas NOT = { full_idea_group = innovativeness_ideas } }
3291
+ AND = { has_idea_group = religious_ideas NOT = { full_idea_group = religious_ideas } }
3292
+ AND = { has_idea_group = economic_ideas NOT = { full_idea_group = economic_ideas } }
3293
+ AND = { has_idea_group = expansion_ideas NOT = { full_idea_group = expansion_ideas } }
3294
+ AND = { has_idea_group = administrative_ideas NOT = { full_idea_group = administrative_ideas } }
3295
+ AND = { has_idea_group = humanist_ideas NOT = { full_idea_group = humanist_ideas } }
3296
+ AND = { has_idea_group = infrastructure_ideas NOT = { full_idea_group = infrastructure_ideas } }
3297
+ }
3298
+ }
3299
+ ]
3300
+ [[dip_ideas]
3301
+ custom_trigger_tooltip = {
3302
+ tooltip = has_any_active_incomplete_idea_group_of_category_dip
3303
+ OR = {
3304
+ AND = { has_idea_group = spy_ideas NOT = { full_idea_group = spy_ideas } }
3305
+ AND = { has_idea_group = diplomatic_ideas NOT = { full_idea_group = diplomatic_ideas } }
3306
+ AND = { has_idea_group = trade_ideas NOT = { full_idea_group = trade_ideas } }
3307
+ AND = { has_idea_group = exploration_ideas NOT = { full_idea_group = exploration_ideas } }
3308
+ AND = { has_idea_group = maritime_ideas NOT = { full_idea_group = maritime_ideas } }
3309
+ AND = { has_idea_group = influence_ideas NOT = { full_idea_group = influence_ideas } }
3310
+ AND = { has_idea_group = court_ideas NOT = { full_idea_group = court_ideas } }
3311
+ }
3312
+ }
3313
+ ]
3314
+ [[mil_ideas]
3315
+ custom_trigger_tooltip = {
3316
+ tooltip = has_any_active_incomplete_idea_group_of_category_mil
3317
+ OR = {
3318
+ AND = { has_idea_group = aristocracy_ideas NOT = { full_idea_group = aristocracy_ideas } }
3319
+ AND = { has_idea_group = offensive_ideas NOT = { full_idea_group = offensive_ideas } }
3320
+ AND = { has_idea_group = defensive_ideas NOT = { full_idea_group = defensive_ideas } }
3321
+ AND = { has_idea_group = quality_ideas NOT = { full_idea_group = quality_ideas } }
3322
+ AND = { has_idea_group = quantity_ideas NOT = { full_idea_group = quantity_ideas } }
3323
+ AND = { has_idea_group = theocracy_gov_ideas NOT = { full_idea_group = theocracy_gov_ideas } }
3324
+ AND = { has_idea_group = indigenous_ideas NOT = { full_idea_group = indigenous_ideas } }
3325
+ AND = { has_idea_group = horde_gov_ideas NOT = { full_idea_group = horde_gov_ideas } }
3326
+ AND = { has_idea_group = plutocracy_ideas NOT = { full_idea_group = plutocracy_ideas } }
3327
+ AND = { has_idea_group = mercenary_ideas NOT = { full_idea_group = mercenary_ideas } }
3328
+ AND = { has_idea_group = naval_ideas NOT = { full_idea_group = naval_ideas } }
3329
+ }
3330
+ }
3331
+ ]
3332
+ }
3333
+
3334
+ has_unlocked_church_aspect = {
3335
+ has_country_flag = unlocked_church_aspect_$church_aspect$
3336
+ }
3337
+
3338
+ has_increased_trade_goods_discovery = {
3339
+ has_country_flag = increased_trade_goods_discovery_$trade_goods$
3340
+ }
3341
+
3342
+ has_stab_reduction_from_dip_action_modifier = {
3343
+ full_idea_group = diplomatic_ideas
3344
+ }
3345
+
3346
+ is_not_eligible_for_trade_good_grain = {
3347
+ OR = {
3348
+ has_terrain = desert
3349
+ has_terrain = glacier
3350
+ has_terrain = coastline
3351
+ has_climate = arctic
3352
+ }
3353
+ }
3354
+ is_not_eligible_for_trade_good_wine = {
3355
+ OR = {
3356
+ has_winter = severe_winter
3357
+ has_climate = arctic
3358
+ has_climate = arid
3359
+ has_climate = tropical
3360
+ has_terrain = jungle
3361
+ has_terrain = drylands
3362
+ has_terrain = steppe
3363
+ has_terrain = desert
3364
+ has_terrain = coastal_desert
3365
+ has_terrain = marsh
3366
+ has_terrain = savannah
3367
+ has_terrain = glacier
3368
+ religion_group = muslim
3369
+ }
3370
+ }
3371
+ is_not_eligible_for_trade_good_wool = {
3372
+ OR = {
3373
+ has_terrain = glacier
3374
+ has_terrain = marsh
3375
+ has_terrain = jungle
3376
+ has_terrain = farmlands
3377
+ has_terrain = coastline
3378
+ has_terrain = hills
3379
+ has_terrain = forest
3380
+ has_terrain = woods
3381
+ region = central_africa_region
3382
+ area = newfoundland_area
3383
+ AND = {
3384
+ has_climate = tropical
3385
+ NOT = { area = paraguay_area }
3386
+ NOT = { area = chaco_area }
3387
+ }
3388
+ AND = {
3389
+ has_climate = arctic
3390
+ NOT = { region = tibet_region }
3391
+ }
3392
+ AND = {
3393
+ has_winter = severe_winter
3394
+ NOT = { region = tibet_region }
3395
+ NOT = { region = hindusthan_region }
3396
+ NOT = { region = central_asia_region }
3397
+ NOT = { region = caucasia_region }
3398
+ }
3399
+ AND = {
3400
+ OR = {
3401
+ region = carribeans_region
3402
+ region = brazil_region
3403
+ region = colombia_region
3404
+ region = southeast_america_region
3405
+ region = mississippi_region
3406
+ }
3407
+ NOT = { has_terrain = mountain }
3408
+ }
3409
+ }
3410
+ }
3411
+ is_not_eligible_for_trade_good_cloth = {
3412
+ NOT = { development_discounting_tribal = 15 }
3413
+ }
3414
+ is_not_eligible_for_trade_good_fish = {
3415
+ NOT = { has_port = yes }
3416
+ }
3417
+ is_not_eligible_for_trade_good_fur = {
3418
+ OR = {
3419
+ AND = {
3420
+ OR = {
3421
+ has_climate = tropical
3422
+ has_climate = arid
3423
+ has_terrain = drylands
3424
+ has_terrain = steppe
3425
+ has_terrain = desert
3426
+ has_terrain = coastal_desert
3427
+ has_terrain = coastline
3428
+ }
3429
+ NOT = { has_winter = normal_winter }
3430
+ NOT = { has_winter = severe_winter }
3431
+ }
3432
+ has_terrain = farmlands
3433
+ has_terrain = mountain
3434
+ continent = south_america
3435
+ region = carribeans_region
3436
+ region = south_africa_region
3437
+ region = australia_region
3438
+ region = central_africa_region
3439
+ area = newfoundland_area
3440
+ }
3441
+ }
3442
+ is_not_eligible_for_trade_good_salt = {
3443
+ OR = {
3444
+ area = newfoundland_area
3445
+ AND = {
3446
+ NOT = { has_terrain = desert }
3447
+ NOT = { has_terrain = marsh }
3448
+ NOT = { has_terrain = mountain }
3449
+ NOT = { has_terrain = highlands }
3450
+ NOT = { any_neighbor_province = { province_id = 1649 } } #Lake Victoria
3451
+ NOT = { any_neighbor_province = { province_id = 1650 } } #Lake Tangyanika
3452
+ NOT = { any_neighbor_province = { province_id = 1651 } } #Lake Malawi
3453
+ }
3454
+ }
3455
+ }
3456
+ is_not_eligible_for_trade_good_naval_supplies = {
3457
+ OR = {
3458
+ has_terrain = glacier
3459
+ has_terrain = desert
3460
+ has_terrain = coastal_desert
3461
+ has_terrain = drylands
3462
+ has_terrain = savannah
3463
+ has_terrain = marsh
3464
+ has_terrain = steppe
3465
+ has_terrain = highlands
3466
+ has_terrain = farmlands
3467
+ area = newfoundland_area
3468
+ }
3469
+ }
3470
+ is_not_eligible_for_trade_good_copper = {
3471
+ OR = {
3472
+ area = newfoundland_area
3473
+ has_terrain = steppe
3474
+ has_terrain = desert
3475
+ has_terrain = coastal_desert
3476
+ has_terrain = drylands
3477
+ has_terrain = grasslands
3478
+ has_terrain = savannah
3479
+ has_terrain = coastline
3480
+ has_terrain = glacier
3481
+ has_terrain = jungle
3482
+ has_terrain = farmlands
3483
+ has_terrain = woods
3484
+ AND = {
3485
+ is_random_new_world = no
3486
+ NOT = { province_id = 990 } #St Maurice ironworks
3487
+ NOT = { area = minas_gerais_area }
3488
+ NOT = { area = diamantina_area }
3489
+ NOT = { area = mato_grosso_area }
3490
+ NOT = { area = great_valley_area }
3491
+ NOT = { area = susquehanna_area }
3492
+ NOT = { area = hudson_valley_area }
3493
+ NOT = { area = lake_superior_area }
3494
+ NOT = { area = south_iroquoisia_area }
3495
+ NOT = { area = upper_ontario_area }
3496
+ NOT = { area = laurentian_area }
3497
+ NOT = { area = inner_ontario_area }
3498
+ NOT = { area = maryland_area }
3499
+ NOT = { area = ofaie_area }
3500
+ NOT = { region = west_siberia_region }
3501
+ NOT = { region = east_siberia_region }
3502
+ NOT = { region = central_africa_region }
3503
+ }
3504
+ AND = {
3505
+ is_random_new_world = yes
3506
+ NOT = { region = west_siberia_region }
3507
+ NOT = { region = east_siberia_region }
3508
+ NOT = { continent = new_world }
3509
+ }
3510
+ }
3511
+ }
3512
+ is_not_eligible_for_trade_good_gold = {
3513
+ OR = {
3514
+ area = newfoundland_area
3515
+ AND = {
3516
+ is_random_new_world = no
3517
+ NOT = { region = west_siberia_region }
3518
+ NOT = { region = east_siberia_region }
3519
+ NOT = { region = cascadia_region }
3520
+ NOT = { region = australia_region }
3521
+ NOT = { region = california_region }
3522
+ NOT = { region = south_africa_region }
3523
+ NOT = { region = central_africa_region }
3524
+ NOT = { region = peru_region }
3525
+ NOT = { region = upper_peru_region }
3526
+ NOT = { region = mexico_region }
3527
+ NOT = { region = rio_grande_region }
3528
+ NOT = { region = central_america_region }
3529
+ NOT = { area = goias_area }
3530
+ NOT = { area = pontal_area }
3531
+ NOT = { area = mato_grosso_area }
3532
+ NOT = { area = ofaie_area }
3533
+ NOT = { area = minas_gerais_area }
3534
+ NOT = { area = diamantina_area }
3535
+ NOT = { area = guapore_area }
3536
+ NOT = { area = grao_para_area }
3537
+ NOT = { area = amapa_area }
3538
+ NOT = { area = ucayali_area }
3539
+ NOT = { area = amazon_area }
3540
+ }
3541
+ AND = {
3542
+ is_random_new_world = yes
3543
+ NOT = { continent = new_world }
3544
+ NOT = { region = west_siberia_region }
3545
+ NOT = { region = east_siberia_region }
3546
+ NOT = { region = australia_region }
3547
+ NOT = { region = south_africa_region }
3548
+ NOT = { region = central_africa_region }
3549
+ }
3550
+ AND = {
3551
+ is_random_new_world = yes
3552
+ continent = new_world
3553
+ OR = {
3554
+ has_terrain = forest
3555
+ has_terrain = woods
3556
+ has_terrain = drylands
3557
+ has_terrain = grasslands
3558
+ has_terrain = savannah
3559
+ has_terrain = steppe
3560
+ has_terrain = jungle
3561
+ has_terrain = coastline
3562
+ has_terrain = coastal_desert
3563
+ has_terrain = marsh
3564
+ }
3565
+ }
3566
+ }
3567
+ }
3568
+ is_not_eligible_for_trade_good_iron = {
3569
+ OR = {
3570
+ area = newfoundland_area
3571
+ AND = {
3572
+ normal_or_historical_nations = yes
3573
+ NOT = { region = west_siberia_region }
3574
+ NOT = { region = east_siberia_region }
3575
+ NOT = { region = central_africa_region }
3576
+ NOT = { province_id = 990 }
3577
+ NOT = { area = great_valley_area }
3578
+ NOT = { area = susquehanna_area }
3579
+ NOT = { area = hudson_valley_area }
3580
+ NOT = { area = lake_superior_area }
3581
+ NOT = { area = south_iroquoisia_area }
3582
+ NOT = { area = upper_ontario_area }
3583
+ NOT = { area = laurentian_area }
3584
+ NOT = { area = inner_ontario_area }
3585
+ NOT = { area = maryland_area }
3586
+ NOT = { area = ofaie_area }
3587
+ NOT = { province_id = 18 }
3588
+ is_random_new_world = no
3589
+ }
3590
+ }
3591
+ }
3592
+ is_not_eligible_for_trade_good_slaves = {
3593
+ OR = {
3594
+ holy_order = dominican_order
3595
+ area = newfoundland_area
3596
+ island = yes
3597
+ NOT = { continent = africa }
3598
+ owner = {
3599
+ OR = {
3600
+ has_country_modifier = abolish_slavery
3601
+ has_reform = war_against_the_world_doctrine_reform
3602
+ }
3603
+ }
3604
+ }
3605
+ }
3606
+ is_not_eligible_for_trade_good_ivory = {
3607
+ OR = {
3608
+ area = newfoundland_area
3609
+ AND = {
3610
+ NOT = { continent = asia }
3611
+ NOT = { continent = africa }
3612
+ NOT = { area = subarctic_islands_area }
3613
+ NOT = { area = greenland_area }
3614
+ }
3615
+ AND = {
3616
+ NOT = { has_terrain = jungle }
3617
+ NOT = { has_terrain = savannah }
3618
+ NOT = { has_terrain = glacier }
3619
+ }
3620
+ region = west_siberia_region
3621
+ region = east_siberia_region
3622
+ region = manchuria_region
3623
+ region = central_asia_region
3624
+ region = south_africa_region
3625
+ }
3626
+ }
3627
+ is_not_eligible_for_trade_good_tea = {
3628
+ OR = {
3629
+ AND = {
3630
+ is_random_new_world = no
3631
+ NOT = { region = malaya_region }
3632
+ NOT = { region = moluccas_region }
3633
+ NOT = { region = indonesia_region }
3634
+ NOT = { region = indo_china_region }
3635
+ NOT = { region = south_china_region }
3636
+ NOT = { region = xinan_region }
3637
+ NOT = { region = japan_region }
3638
+ NOT = { area = taiwan_area }
3639
+ NOT = { area = assam_area }
3640
+ NOT = { area = banda_oriental_area } #Yerba Mate
3641
+ NOT = { area = rio_grande_do_sol_area } #Yerba Mate
3642
+ NOT = { area = buenos_aires_area } #Yerba Mate
3643
+ NOT = { area = misiones_area } #Yerba Mate
3644
+ NOT = { area = beni_area } #Yerba Mate
3645
+ NOT = { area = moxos_area } #Yerba Mate
3646
+ NOT = { area = paraguay_area } #Yerba Mate
3647
+ NOT = { area = sao_paolo_area } #Yerba Mate
3648
+ NOT = { area = west_sao_paolo_area } #Yerba Mate
3649
+ }
3650
+ AND = {
3651
+ is_random_new_world = yes #Only the below cultures can get tea in the RNW
3652
+ FROM = {
3653
+ NOT = { culture_group = east_asian }
3654
+ NOT = { culture_group = central_indic }
3655
+ NOT = { culture_group = dravidian }
3656
+ NOT = { culture_group = western_aryan }
3657
+ NOT = { culture_group = hindusthani }
3658
+ NOT = { culture_group = eastern_aryan }
3659
+ NOT = { culture_group = korean_g }
3660
+ NOT = { culture_group = japanese_g }
3661
+ }
3662
+ }
3663
+ AND = {
3664
+ OR = {
3665
+ has_terrain = mountain
3666
+ has_terrain = desert
3667
+ has_terrain = drylands
3668
+ has_terrain = steppe
3669
+ has_terrain = savannah
3670
+ has_climate = arid
3671
+ has_winter = mild_winter
3672
+ has_winter = normal_winter
3673
+ has_winter = severe_winter
3674
+ }
3675
+ }
3676
+ }
3677
+ }
3678
+ is_not_eligible_for_trade_good_chinaware = {
3679
+ OR = {
3680
+ area = newfoundland_area
3681
+ AND = {
3682
+ NOT = { region = malaya_region }
3683
+ NOT = { region = moluccas_region }
3684
+ NOT = { region = indonesia_region }
3685
+ NOT = { region = south_china_region }
3686
+ NOT = { region = japan_region }
3687
+ }
3688
+ NOT = { development_discounting_tribal = 8 }
3689
+ }
3690
+ }
3691
+ is_not_eligible_for_trade_good_spices = {
3692
+ OR = {
3693
+ area = newfoundland_area
3694
+ AND = {
3695
+ NOT = { region = malaya_region }
3696
+ NOT = { region = moluccas_region }
3697
+ NOT = { region = indonesia_region }
3698
+ NOT = { region = deccan_region }
3699
+ NOT = { region = bengal_region }
3700
+ NOT = { region = coromandel_region }
3701
+ NOT = { region = central_america_region }
3702
+ NOT = { region = mexico_region }
3703
+ NOT = { area = indian_ocean_islands_area }
3704
+ NOT = { province_id = 1244 } # Tahiti
3705
+ }
3706
+ has_terrain = mountain
3707
+ }
3708
+ }
3709
+ is_not_eligible_for_trade_good_coffee = {
3710
+ OR = {
3711
+ area = newfoundland_area
3712
+ AND = {
3713
+ is_random_new_world = no
3714
+ NOT = { area = southern_ethiopia_area }
3715
+ NOT = { area = hadiya_area }
3716
+ NOT = { area = damot_area }
3717
+ NOT = { area = shewa_area }
3718
+ NOT = { region = malaya_region }
3719
+ NOT = { region = indonesia_region }
3720
+ NOT = { region = moluccas_region }
3721
+ NOT = { region = la_plata_region }
3722
+ NOT = { region = peru_region }
3723
+ NOT = { region = brazil_region }
3724
+ NOT = { region = carribeans_region }
3725
+ NOT = { region = central_america_region }
3726
+ NOT = { region = mexico_region }
3727
+ NOT = { region = colombia_region }
3728
+ }
3729
+ has_terrain = glacier
3730
+ has_terrain = forest
3731
+ has_climate = arctic
3732
+ has_winter = severe_winter
3733
+ has_winter = normal_winter
3734
+ has_winter = mild_winter
3735
+ province_id = 481
3736
+ AND = {
3737
+ is_random_new_world = yes
3738
+ continent = new_world #Always in RNW
3739
+ NOT = { has_climate = tropical }
3740
+ }
3741
+ }
3742
+ }
3743
+ is_not_eligible_for_trade_good_cotton = {
3744
+ OR = {
3745
+ area = newfoundland_area
3746
+ AND = {
3747
+ is_random_new_world = no
3748
+ NOT = { region = southeast_america_region }
3749
+ NOT = { region = carribeans_region }
3750
+ NOT = { region = mississippi_region }
3751
+ NOT = { region = rio_grande_region }
3752
+ NOT = { region = egypt_region }
3753
+ NOT = { region = hindusthan_region }
3754
+ NOT = { region = bengal_region }
3755
+ NOT = { region = deccan_region }
3756
+ NOT = { region = anatolia_region }
3757
+ NOT = { region = mongolia_region }
3758
+ }
3759
+ AND = {
3760
+ is_random_new_world = yes
3761
+ NOT = { region = egypt_region }
3762
+ NOT = { region = hindusthan_region }
3763
+ NOT = { region = bengal_region }
3764
+ NOT = { region = deccan_region }
3765
+ NOT = { region = anatolia_region }
3766
+ NOT = { region = mongolia_region }
3767
+ NOT = { continent = new_world } #Always in RNW
3768
+ }
3769
+ has_terrain = mountain
3770
+ has_terrain = highlands
3771
+ has_terrain = forest
3772
+ has_terrain = jungle
3773
+ has_climate = arctic
3774
+ has_climate = arid
3775
+ has_terrain = glacier
3776
+ has_winter = severe_winter
3777
+ has_winter = normal_winter
3778
+ has_winter = mild_winter
3779
+ has_terrain = desert
3780
+ province_id = 481
3781
+ AND = {
3782
+ continent = europe
3783
+ NOT = { region = anatolia_region }
3784
+ }
3785
+ }
3786
+ }
3787
+ is_not_eligible_for_trade_good_sugar = {
3788
+ OR = {
3789
+ area = newfoundland_area
3790
+ AND = {
3791
+ NOT = { has_climate = tropical }
3792
+ OR = {
3793
+ has_winter = severe_winter
3794
+ has_winter = normal_winter
3795
+ has_winter = mild_winter
3796
+ has_terrain = desert
3797
+ has_terrain = mountain
3798
+ has_terrain = hills
3799
+ has_terrain = highlands
3800
+ has_terrain = forest
3801
+ has_terrain = steppe
3802
+ }
3803
+ }
3804
+ AND = {
3805
+ is_random_new_world = no
3806
+ NOT = { region = carribeans_region }
3807
+ NOT = { region = brazil_region }
3808
+ NOT = { region = mexico_region }
3809
+ NOT = { region = rio_grande_region }
3810
+ NOT = { region = central_america_region }
3811
+ NOT = { region = colombia_region }
3812
+ NOT = { region = deccan_region }
3813
+ NOT = { region = west_india_region }
3814
+ NOT = { area = mascarenes_area }
3815
+ }
3816
+ AND = {
3817
+ is_random_new_world = yes
3818
+ NOT = { region = deccan_region }
3819
+ NOT = { region = west_india_region }
3820
+ NOT = { area = mascarenes_area }
3821
+ }
3822
+ }
3823
+ }
3824
+ is_not_eligible_for_trade_good_tobacco = {
3825
+ OR = {
3826
+ area = newfoundland_area
3827
+ AND = {
3828
+ is_random_new_world = no
3829
+ NOT = { region = la_plata_region }
3830
+ NOT = { region = northeast_america_region }
3831
+ NOT = { region = southeast_america_region }
3832
+ NOT = { region = rio_grande_region }
3833
+ NOT = { region = brazil_region }
3834
+ NOT = { region = carribeans_region }
3835
+ NOT = { region = australia_region }
3836
+ NOT = { area = appalachia_area }
3837
+ NOT = { area = south_appalachia_area }
3838
+ }
3839
+ AND = {
3840
+ is_random_new_world = yes
3841
+ NOT = { continent = new_world } #Always in RNW
3842
+ }
3843
+ AND = {
3844
+ has_climate = arid
3845
+ NOT = { has_terrain = grasslands }
3846
+ NOT = { has_terrain = farmlands }
3847
+ }
3848
+ has_winter = severe_winter
3849
+ has_terrain = glacier
3850
+ has_terrain = mountain
3851
+ has_terrain = drylands
3852
+ has_terrain = desert
3853
+ }
3854
+ }
3855
+ is_not_eligible_for_trade_good_cocoa = {
3856
+ OR = {
3857
+ area = newfoundland_area
3858
+ AND = {
3859
+ is_random_new_world = no
3860
+ NOT = { region = central_america_region }
3861
+ NOT = { region = colombia_region }
3862
+ NOT = { region = peru_region }
3863
+ NOT = { region = brazil_region }
3864
+ }
3865
+ AND = {
3866
+ is_random_new_world = yes
3867
+ NOT = { continent = new_world } #Always in RNW
3868
+ }
3869
+ has_terrain = glacier
3870
+ has_terrain = steppe
3871
+ has_terrain = forest
3872
+ has_terrain = woods
3873
+ has_terrain = marsh
3874
+ has_climate = arid
3875
+ has_climate = arctic
3876
+ has_winter = mild_winter
3877
+ has_winter = normal_winter
3878
+ has_winter = severe_winter
3879
+ }
3880
+ }
3881
+ is_not_eligible_for_trade_good_silk = {
3882
+ OR = {
3883
+ area = newfoundland_area
3884
+ normal_or_historical_nations = yes
3885
+ has_terrain = highlands
3886
+ has_terrain = mountain
3887
+ has_terrain = marsh
3888
+ has_terrain = steppe
3889
+ has_terrain = coastline
3890
+ has_terrain = desert
3891
+ has_terrain = coastal_desert
3892
+ has_terrain = hills
3893
+ has_terrain = drylands
3894
+ has_terrain = glacier
3895
+ has_climate = arid
3896
+ has_climate = arctic
3897
+ has_winter = mild_winter
3898
+ has_winter = normal_winter
3899
+ has_winter = severe_winter
3900
+ }
3901
+ }
3902
+ is_not_eligible_for_trade_good_dyes = {
3903
+ OR = {
3904
+ area = newfoundland_area
3905
+ NOT = { has_terrain = jungle }
3906
+ has_climate = arid
3907
+ has_climate = arctic
3908
+ has_winter = mild_winter
3909
+ has_winter = normal_winter
3910
+ has_winter = severe_winter
3911
+ AND = {
3912
+ is_random_new_world = no
3913
+ NOT = { region = niger_region }
3914
+ NOT = { region = guinea_region }
3915
+ NOT = { region = kongo_region }
3916
+ NOT = { region = central_america_region }
3917
+ NOT = { region = mexico_region }
3918
+ NOT = { region = carribeans_region }
3919
+ }
3920
+ }
3921
+ }
3922
+ is_not_eligible_for_trade_good_tropical_wood = {
3923
+ OR = {
3924
+ area = newfoundland_area
3925
+ AND = {
3926
+ NOT = { has_terrain = jungle }
3927
+ NOT = { province_id = 1240 }
3928
+ }
3929
+ NOT = { has_climate = tropical }
3930
+ }
3931
+ }
3932
+ is_not_eligible_for_trade_good_livestock = {
3933
+ OR = {
3934
+ area = newfoundland_area
3935
+ has_terrain = glacier
3936
+ has_terrain = marsh
3937
+ has_terrain = jungle
3938
+ AND = {
3939
+ has_terrain = coastline
3940
+ NOT = { province_id = 2002 }
3941
+ }
3942
+ has_terrain = hills
3943
+ has_terrain = forest
3944
+ has_terrain = woods
3945
+ AND = {
3946
+ has_climate = tropical
3947
+ NOT = { area = paraguay_area }
3948
+ NOT = { area = chaco_area }
3949
+ NOT = { region = central_africa_region }
3950
+ NOT = { region = east_africa_region }
3951
+ NOT = { region = colombia_region }
3952
+ NOT = { region = brazil_region }
3953
+ }
3954
+ AND = {
3955
+ has_climate = arctic
3956
+ NOT = { region = tibet_region }
3957
+ }
3958
+ AND = {
3959
+ OR = {
3960
+ region = carribeans_region
3961
+ region = brazil_region
3962
+ region = colombia_region
3963
+ region = southeast_america_region
3964
+ region = mississippi_region
3965
+ }
3966
+ NOT = { has_terrain = mountain }
3967
+ }
3968
+ }
3969
+ }
3970
+ is_not_eligible_for_trade_good_incense = {
3971
+ OR = {
3972
+ area = newfoundland_area
3973
+ AND = {
3974
+ NOT = { region = arabia_region }
3975
+ NOT = { region = malaya_region }
3976
+ NOT = { region = moluccas_region }
3977
+ NOT = { region = indonesia_region }
3978
+ NOT = { region = deccan_region }
3979
+ NOT = { region = bengal_region }
3980
+ NOT = { region = coromandel_region }
3981
+ NOT = { region = south_east_pacific_region }
3982
+ NOT = { region = australia_region }
3983
+ NOT = { area = indian_ocean_islands_area }
3984
+ }
3985
+ has_terrain = mountain
3986
+ }
3987
+ }
3988
+ is_not_eligible_for_trade_good_glass = {
3989
+ OR = {
3990
+ area = newfoundland_area
3991
+ NOT = { development_discounting_tribal = 15 }
3992
+ }
3993
+ }
3994
+ is_not_eligible_for_trade_good_paper = {
3995
+ OR = {
3996
+ area = newfoundland_area
3997
+ NOT = { development_discounting_tribal = 15 }
3998
+ }
3999
+ }
4000
+ is_not_eligible_for_trade_good_gems = {
4001
+ OR = {
4002
+ area = newfoundland_area
4003
+ AND = {
4004
+ is_random_new_world = no
4005
+ NOT = { region = west_siberia_region }
4006
+ NOT = { region = east_siberia_region }
4007
+ NOT = { region = australia_region }
4008
+ NOT = { region = south_africa_region }
4009
+ NOT = { region = central_africa_region }
4010
+ NOT = { region = central_america_region }
4011
+ NOT = { region = peru_region }
4012
+ NOT = { region = upper_peru_region }
4013
+ NOT = { region = colombia_region }
4014
+ NOT = { region = indonesia_region }
4015
+ NOT = { region = moluccas_region }
4016
+ NOT = { region = hindusthan_region }
4017
+ NOT = { region = west_india_region }
4018
+ NOT = { region = bengal_region }
4019
+ NOT = { region = deccan_region }
4020
+ NOT = { region = coromandel_region }
4021
+ NOT = { region = indo_china_region }
4022
+ NOT = { continent = oceania }
4023
+ NOT = { area = minas_gerais_area }
4024
+ NOT = { area = diamantina_area }
4025
+ NOT = { area = amazon_area }
4026
+ NOT = { area = bogota_area }
4027
+ NOT = { area = popayan_area }
4028
+ NOT = { area = venezuela_area }
4029
+ NOT = { area = guyana_area }
4030
+ NOT = { area = upper_guyana_area }
4031
+ NOT = { area = guapore_area }
4032
+ NOT = { area = amapa_area }
4033
+ NOT = { area = grao_para_area }
4034
+ NOT = { area = goias_area }
4035
+ NOT = { area = mato_grosso_area }
4036
+ NOT = { area = pontal_area }
4037
+ NOT = { area = guapore_area }
4038
+ }
4039
+ AND = {
4040
+ is_random_new_world = yes
4041
+ NOT = { continent = new_world }
4042
+ NOT = { region = west_siberia_region }
4043
+ NOT = { region = east_siberia_region }
4044
+ NOT = { region = australia_region }
4045
+ NOT = { region = south_africa_region }
4046
+ NOT = { region = indonesia_region }
4047
+ NOT = { region = moluccas_region }
4048
+ NOT = { region = hindusthan_region }
4049
+ NOT = { region = west_india_region }
4050
+ NOT = { region = bengal_region }
4051
+ NOT = { region = deccan_region }
4052
+ NOT = { region = coromandel_region }
4053
+ NOT = { region = indo_china_region }
4054
+ NOT = { continent = oceania }
4055
+ }
4056
+ AND = {
4057
+ is_random_new_world = yes
4058
+ continent = new_world
4059
+ OR = {
4060
+ has_terrain = forest
4061
+ has_terrain = woods
4062
+ has_terrain = drylands
4063
+ has_terrain = grasslands
4064
+ has_terrain = savannah
4065
+ has_terrain = steppe
4066
+ has_terrain = coastline
4067
+ has_terrain = coastal_desert
4068
+ has_terrain = marsh
4069
+ }
4070
+ }
4071
+ AND = {
4072
+ NOT = { has_terrain = coastline }
4073
+ NOT = { region = australia_region }
4074
+ continent = oceania #Pearls
4075
+ }
4076
+ }
4077
+ }
4078
+ is_not_eligible_for_trade_good_coal = {
4079
+ always = yes #Should never be available
4080
+ }
4081
+ is_not_eligible_for_trade_good_cloves = {
4082
+ NOT = {
4083
+ OR = {
4084
+ area = molluca_area
4085
+ area = spice_islands_area
4086
+ }
4087
+ }
4088
+ }
4089
+ is_not_eligible_for_trade_good_unknown = {
4090
+ always = yes
4091
+ }
4092
+
4093
+ has_chance_scaling_cost = {
4094
+ always = no
4095
+ }
4096
+
4097
+ # Province scope
4098
+ # Supports the following trade goods
4099
+ ####################################
4100
+ # grain
4101
+ # wine
4102
+ # wool
4103
+ # cloth
4104
+ # fish
4105
+ # fur
4106
+ # salt
4107
+ # naval_supplies
4108
+ # copper
4109
+ # gold
4110
+ # iron
4111
+ # slaves
4112
+ # ivory
4113
+ # tea
4114
+ # chinaware
4115
+ # spices
4116
+ # coffee
4117
+ # cotton
4118
+ # sugar
4119
+ # tobacco
4120
+ # cocoa
4121
+ # silk
4122
+ # dyes
4123
+ # tropical_wood
4124
+ # livestock
4125
+ # incense
4126
+ # glass
4127
+ # paper
4128
+ # gems
4129
+ # coal
4130
+ # cloves
4131
+ # unknown
4132
+ is_eligible_for_trade_good = {
4133
+ NOT = { trade_goods = $trade_goods$ }
4134
+ NOT = { is_not_eligible_for_trade_good_$trade_goods$ = yes }
4135
+ }
4136
+
4137
+ has_updated_culture = {
4138
+ has_global_flag = updated_$culture$_flag
4139
+ }
4140
+
4141
+ is_eligible_for_statists_monarchist_events = {
4142
+ NOT = { has_government_attribute = theocratic_monarchy_mechanic }
4143
+ NOT = { has_government_attribute = has_co_rulership }
4144
+ }
4145
+
4146
+ has_modifier_locking_military_tier = {
4147
+ has_country_modifier = new_order_regiment_mobilized_modifier
4148
+ }
4149
+
4150
+ has_not_modifier_locking_military_tier = {
4151
+ custom_trigger_tooltip = {
4152
+ tooltip = has_modifier_locking_military_tier_tt
4153
+ NOT = { has_modifier_locking_military_tier = yes }
4154
+ }
4155
+ }
4156
+
4157
+ has_not_locked_first_tier_reform = {
4158
+ NOT = { has_reform = shogunate }
4159
+ NOT = { has_reform = daimyo }
4160
+ NOT = { has_reform = feudal_france_reform }
4161
+ NOT = { has_reform = appanage_reform }
4162
+ NOT = { has_reform = absolutist_france_reform }
4163
+ NOT = { has_reform = celestial_empire }
4164
+ NOT = { has_reform = kalmar_union }
4165
+ NOT = { has_reform = elective_monarchy }
4166
+ NOT = { has_reform = english_monarchy }
4167
+ NOT = { has_reform = british_monarchy }
4168
+ NOT = { has_reform = angevin_monarchy }
4169
+ NOT = { has_reform = absolute_british_monarchy }
4170
+ NOT = { has_reform = ottoman_government }
4171
+ NOT = { has_reform = byzantine_autocracy_reform }
4172
+ NOT = { has_reform = reformed_byzantine_monarchy_reform }
4173
+ NOT = { has_reform = caliphate_reform }
4174
+ NOT = { has_reform = modernized_ottoman_government }
4175
+ NOT = { has_reform = reorganized_ottoman_government }
4176
+ NOT = { has_reform = eyalet_government }
4177
+ NOT = { has_reform = barbary_eyalet_government }
4178
+ NOT = { has_reform = mughal_government }
4179
+ NOT = { has_reform = revolutionary_empire_reform }
4180
+ NOT = { has_reform = polish_great_sejm }
4181
+ NOT = { has_reform = polish_elective_monarchy }
4182
+ NOT = { has_reform = polish_autocratic_monarchy }
4183
+ NOT = { has_reform = norwegian_parliamentary_monarchy }
4184
+ NOT = { has_reform = protectorate_parliament_reform }
4185
+ NOT = { has_reform = parliamentary_republic_reform }
4186
+ NOT = { has_reform = pirate_republic_reform }
4187
+ NOT = { has_reform = presidential_despot_reform }
4188
+ NOT = { has_reform = military_dictatorship_reform }
4189
+ NOT = { has_reform = revolutionary_republic_reform }
4190
+ NOT = { has_reform = junior_revolutionary_republic_reform }
4191
+ NOT = { has_reform = free_city }
4192
+ NOT = { has_reform = trading_city }
4193
+ NOT = { has_reform = colonial_government }
4194
+ NOT = { has_reform = crown_colony_government }
4195
+ NOT = { has_reform = private_enterprise_colony_government }
4196
+ NOT = { has_reform = self_governing_colony_government }
4197
+ NOT = { has_reform = trade_company_government }
4198
+ NOT = { has_reform = english_parliamentary_republic_government }
4199
+ NOT = { has_reform = papacy_reform }
4200
+ NOT = { has_reform = caliphate_theocracy_reform }
4201
+ NOT = { has_reform = fifth_monarchists_reform }
4202
+ NOT = { has_reform = great_mongol_state_reform }
4203
+ }
4204
+
4205
+ ARB_hedjaz_najd_bedouin_potential = {
4206
+ OR = {
4207
+ tag = ARB
4208
+ tag = NAJ
4209
+ tag = DAW
4210
+ tag = SHM
4211
+ tag = HED
4212
+ tag = MDA
4213
+ tag = MFL
4214
+ tag = ANZ
4215
+ tag = FAD
4216
+ }
4217
+ NOT = { map_setup = map_setup_random }
4218
+ }
4219
+
4220
+ YEM_is_yemeni_nation ={
4221
+ OR = {
4222
+ tag = YEM
4223
+ tag = ADE
4224
+ tag = HDR
4225
+ tag = NJR
4226
+ tag = MHR
4227
+ tag = RAS
4228
+ # tag = MFL technically Hedjazi
4229
+ }
4230
+ }
4231
+
4232
+ num_of_forced_converted_countries = {
4233
+ custom_trigger_tooltip = {
4234
+ tooltip = HAS_FORCE_CONVERTED_$amount$_COUNTRIES_TT
4235
+ check_variable = {
4236
+ which = num_of_forced_conversions
4237
+ value = $amount$
4238
+ }
4239
+ }
4240
+ }
4241
+
4242
+ num_of_converted_provinces = {
4243
+ custom_trigger_tooltip = {
4244
+ tooltip = HAS_CONVERTED_$amount$_PROVINCES_TT
4245
+ check_variable = {
4246
+ which = num_converted_religion
4247
+ value = $amount$
4248
+ }
4249
+ }
4250
+ }
4251
+
4252
+ has_unlocked_trading_policy = {
4253
+ custom_trigger_tooltip = {
4254
+ tooltip = has_unlocked_trading_policy_$policy$_tt
4255
+ NOT = { has_country_flag = locked_trading_policy_$policy$ }
4256
+ }
4257
+ }
4258
+
4259
+ has_locked_trading_policy = {
4260
+ custom_trigger_tooltip = {
4261
+ tooltip = has_locked_trading_policy_$policy$_tt
4262
+ has_country_flag = locked_trading_policy_$policy$
4263
+ }
4264
+ }
4265
+
4266
+ has_enabled_trading_policy = {
4267
+ has_country_flag = enabled_trading_policy_$policy$
4268
+ NOT = { has_country_flag = disabled_trading_policy_$policy$ }
4269
+ }
4270
+
4271
+ has_disabled_trading_policy = {
4272
+ has_country_flag = disabled_trading_policy_$policy$
4273
+ }
4274
+
4275
+ has_not_disabled_trading_policy = {
4276
+ NOT = { has_country_flag = disabled_trading_policy_$policy$ }
4277
+ }
4278
+
4279
+ trading_policy_or_upgraded_policy_in_node = {
4280
+ OR = {
4281
+ trading_policy_in_node = {
4282
+ node = $node$
4283
+ policy = $policy$
4284
+ }
4285
+ trading_policy_in_node = {
4286
+ node = $node$
4287
+ policy = $policy$_upgraded
4288
+ }
4289
+ }
4290
+ }
4291
+
4292
+ # Supports the following decisions
4293
+ ##################################
4294
+ # grand_vizier_selection
4295
+ # horse_breeding_decision
4296
+ has_unlocked_decision = {
4297
+ custom_trigger_tooltip = {
4298
+ tooltip = has_unlocked_decision_$type$_tt
4299
+ has_country_flag = unlocked_decision_$type$
4300
+ }
4301
+ }
4302
+
4303
+ has_max_monthly_monarch_power = {
4304
+ if = {
4305
+ limit = {
4306
+ #Promote Advisors - +2
4307
+ has_dlc = "Cradle of Civilization"
4308
+ #National Focus - +2
4309
+ has_dlc = "Res Publica"
4310
+ has_dlc = "Common Sense"
4311
+ }
4312
+ monthly_$type$ = 18
4313
+ }
4314
+ else_if = {
4315
+ limit = {
4316
+ OR = {
4317
+ has_dlc = "Cradle of Civilization"
4318
+ has_dlc = "Res Publica"
4319
+ has_dlc = "Common Sense"
4320
+ }
4321
+ }
4322
+ monthly_$type$ = 16
4323
+ }
4324
+ else = {
4325
+ monthly_$type$ = 14
4326
+ }
4327
+ }
4328
+
4329
+ has_high_monthly_monarch_power = {
4330
+ if = {
4331
+ limit = {
4332
+ #Promote Advisors - +2
4333
+ has_dlc = "Cradle of Civilization"
4334
+ #National Focus - +2
4335
+ has_dlc = "Res Publica"
4336
+ has_dlc = "Common Sense"
4337
+ }
4338
+ monthly_$type$ = 14
4339
+ }
4340
+ else_if = {
4341
+ limit = {
4342
+ OR = {
4343
+ has_dlc = "Cradle of Civilization"
4344
+ has_dlc = "Res Publica"
4345
+ has_dlc = "Common Sense"
4346
+ }
4347
+ }
4348
+ monthly_$type$ = 12
4349
+ }
4350
+ else = {
4351
+ monthly_$type$ = 10
4352
+ }
4353
+ }
4354
+
4355
+ has_medium_monthly_monarch_power = {
4356
+ if = {
4357
+ limit = {
4358
+ #Promote Advisors - +2
4359
+ has_dlc = "Cradle of Civilization"
4360
+ #National Focus - +2
4361
+ has_dlc = "Res Publica"
4362
+ has_dlc = "Common Sense"
4363
+ }
4364
+ monthly_$type$ = 12
4365
+ }
4366
+ else_if = {
4367
+ limit = {
4368
+ OR = {
4369
+ has_dlc = "Cradle of Civilization"
4370
+ has_dlc = "Res Publica"
4371
+ has_dlc = "Common Sense"
4372
+ }
4373
+ }
4374
+ monthly_$type$ = 10
4375
+ }
4376
+ else = {
4377
+ monthly_$type$ = 8
4378
+ }
4379
+ }
4380
+
4381
+ has_defender_of_faith_religion = {
4382
+ custom_trigger_tooltip = {
4383
+ tooltip = has_defender_of_faith_religion_tt
4384
+ OR = {
4385
+ religion_group = christian
4386
+ religion_group = muslim
4387
+ religion_group = zoroastrian_group
4388
+ religion_group = jewish_group
4389
+ }
4390
+ }
4391
+ }
4392
+
4393
+ has_unlocked_diplomatic_action = {
4394
+ has_country_flag = unlocked_diplomatic_action_$type$
4395
+ }
4396
+
4397
+ has_unified_islam = {
4398
+ custom_trigger_tooltip = {
4399
+ tooltip = has_unified_islam_tt
4400
+ has_country_modifier = unified_islam
4401
+ }
4402
+ }
4403
+
4404
+ has_completed_all_persian_missions = {
4405
+ custom_trigger_tooltip = {
4406
+ tooltip = has_completed_all_persian_missions_tt
4407
+ mission_completed = per_reform_our_defenses
4408
+ mission_completed = per_master_of_india
4409
+ mission_completed = per_create_the_tupchi
4410
+ OR = {
4411
+ AND = {
4412
+ mission_completed = per_a_new_eranshahr
4413
+ mission_completed = per_an_asha_empire
4414
+ }
4415
+ AND = {
4416
+ OR = {
4417
+ mission_completed = per_unify_islam
4418
+ mission_completed = per_great_shia_empire
4419
+ }
4420
+ mission_completed = per_indomitable_lion
4421
+ mission_completed = per_language_of_poetry
4422
+ }
4423
+ }
4424
+ OR = {
4425
+ AND = {
4426
+ has_mission = per_tab_legacy_of_eranshahr
4427
+ mission_completed = per_tab_legacy_of_eranshahr
4428
+ }
4429
+ AND = {
4430
+ has_mission = per_qqq_legacy_of_the_seljuk
4431
+ mission_completed = per_qqq_legacy_of_the_seljuk
4432
+ }
4433
+ AND = {
4434
+ has_mission = per_tim_legacy_of_timur
4435
+ mission_completed = per_tim_legacy_of_timur
4436
+ }
4437
+ AND = {
4438
+ has_mission = per_arl_legacy_of_the_safavid
4439
+ mission_completed = per_arl_legacy_of_the_safavid
4440
+ }
4441
+ AND = {
4442
+ NOT = { has_mission = per_tab_legacy_of_eranshahr }
4443
+ NOT = { has_mission = per_qqq_legacy_of_the_seljuk }
4444
+ NOT = { has_mission = per_tim_legacy_of_timur }
4445
+ NOT = { has_mission = per_arl_legacy_of_the_safavid }
4446
+ }
4447
+ }
4448
+ mission_completed = per_riches_of_asia
4449
+ mission_completed = per_enlightened_rule
4450
+ mission_completed = per_the_tofangchi
4451
+ mission_completed = per_balance_of_power
4452
+ mission_completed = per_establish_the_qurchi
4453
+ }
4454
+ }
4455
+
4456
+ has_any_ongoing_construction = {
4457
+ custom_trigger_tooltip = {
4458
+ tooltip = has_any_ongoing_construction_tt
4459
+ has_construction = building
4460
+ has_construction = core
4461
+ has_construction = culture
4462
+ has_construction = great_project
4463
+ has_construction = canal
4464
+ has_construction = missionary
4465
+ has_construction = state_house
4466
+ }
4467
+ }
4468
+
4469
+ total_non_estate_disasters_completed = {
4470
+ custom_trigger_tooltip = {
4471
+ tooltip = total_non_estate_disasters_completed_$value$_tt
4472
+ check_variable = {
4473
+ which = total_disasters_completed_counter
4474
+ value = $value$
4475
+ }
4476
+ }
4477
+ }
4478
+
4479
+ has_domination_eoc_missions_available = {
4480
+ has_dlc = "Domination"
4481
+ OR = {
4482
+ tag = MNG
4483
+ tag = QNG
4484
+ tag = MCH
4485
+ tag = YAN
4486
+ tag = JIN
4487
+ tag = QIN
4488
+ tag = QIC
4489
+ tag = CSH
4490
+ tag = LNG
4491
+ tag = TNG
4492
+ tag = CXI
4493
+ tag = CHC
4494
+ tag = WUU
4495
+ tag = NNG
4496
+ tag = MIN
4497
+ tag = HUA
4498
+ tag = YUE
4499
+ tag = CMI
4500
+ tag = CYI
4501
+ tag = CDL
4502
+ tag = CGS
4503
+ tag = SHU
4504
+ tag = FRM
4505
+ tag = MJZ
4506
+ tag = MYR
4507
+ tag = EJZ
4508
+ tag = NHX
4509
+ tag = MHX
4510
+ tag = KOR
4511
+ tag = JAP
4512
+ }
4513
+ }
common/scripted_triggers/00_scripted_triggers_FR.txt CHANGED
@@ -1,8 +1,5313 @@
1
- ##############################################
1
+ ##############################################? ### French localization custom strings ###
2
2
  ### Scripted by Nicolas Fouqu? ###
3
3
  ##############################################
4
4
 
5
+ #############################################################################
6
+ ### Ruler Articles & Titles // Articles et titres pour les dirigeants ###
7
+ #############################################################################
8
+ # Ex.: _masc_cons_ => LE roi / DU roi / AU roi / CE roi / nouvEAU roi / SON roi / SON nouveau roi / SON ancien roi
9
+ # Ex.: _masc_vow_ => L'関阸ue / DE L'関阸ue / ?L'関阸ue / CET 関阸ue / nouvEL 関阸ue / SON 関阸ue / SON nouvel 関阸ue / SON ancien 関阸ue
10
+ # Ex.: _masc_cons_ => LA reine / DE LA reine / ?LA reine / CETTE reine / nouvELLE reine / SA reine / SA nouvelle reine / SON ancienne reine
11
+ # Ex.: _masc_vow_ => L'abbesse / DE L'abbesse / ?L'abbesse / CETTE abbesse / nouvELLE abbesse / SON abbesse / SA nouvelle abbesse / SON ancienne abbesse
12
+
13
+ ### HIGHER PRIORITY / PRIORIT?HAUTE = 00_government_names.txt ###
14
+
15
+ frloc_ruler_masc_cons_0000_georgian_MTAVARI = { # "Prince"
16
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
17
+ }
18
+ frloc_ruler_masc_cons_0000_georgian_MEPE = { # "Roi"
19
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
20
+ }
21
+ frloc_ruler_masc_vow_0000_georgian_IMPERATORI = { # "Empereur"
22
+ AND = { government_rank = 3 OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
23
+ }
24
+ frloc_ruler_fem_cons_0000_georgian_MTAVARI_fem = { # "Princesse"
25
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
26
+ }
27
+ frloc_ruler_fem_cons_0000_georgian_MEPE_fem = { # "Reine"
28
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
29
+ }
30
+ frloc_ruler_fem_vow_0000_georgian_IMPERATRITSA = { # "Imp閞atrice"
31
+ AND = { government_rank = 3 OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
32
+ }
33
+ frloc_ruler_masc_cons_0001_stateless_society_TRIBAL_LEADER = { # "Chef tribal"
34
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
35
+ }
36
+ frloc_ruler_fem_cons_0001_stateless_society_TRIBAL_LEADER_fem = { # "Cheffe tribale"
37
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
38
+ }
39
+ frloc_ruler_masc_cons_0001a_kongo_tribal_kingdom_CHIEF = { # "Chef"
40
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } AND = { tag = KON government = tribal } }
41
+ }
42
+ frloc_ruler_masc_cons_0001a_kongo_tribal_kingdom_MWENE_KONGO = { # "Manikongo"
43
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = tribal } }
44
+ }
45
+ frloc_ruler_masc_cons_0001a_kongo_tribal_kingdom_GREAT_MWENE_KONGO = { # "Manikongo supr阭e"
46
+ AND = { government_rank = 3 AND = { tag = KON government = tribal } }
47
+ }
48
+ frloc_ruler_fem_cons_0001a_kongo_tribal_kingdom_CHIEFTESS = { # "Cheffe"
49
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } AND = { tag = KON government = tribal } }
50
+ }
51
+ frloc_ruler_fem_cons_0001a_kongo_tribal_kingdom_MWENE_KONGO_fem = { # "Manikongo"
52
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = tribal } }
53
+ }
54
+ frloc_ruler_fem_cons_0001a_kongo_tribal_kingdom_GREAT_MWENE_KONGO_fem = { # "Manikongo supr阭e"
55
+ AND = { government_rank = 3 AND = { tag = KON government = tribal } }
56
+ }
57
+ frloc_ruler_masc_cons_0001b_kongo_monarchy_kingdom_DUKE = { # "Duc"
58
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } AND = { tag = KON government = monarchy } }
59
+ }
60
+ frloc_ruler_masc_cons_0001b_kongo_monarchy_kingdom_MWENE_KONGO = { # "Manikongo"
61
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = monarchy } }
62
+ }
63
+ frloc_ruler_masc_cons_0001b_kongo_monarchy_kingdom_GREAT_MWENE_KONGO = { # "Manikongo supr阭e"
64
+ AND = { government_rank = 3 AND = { tag = KON government = monarchy } }
65
+ }
66
+ frloc_ruler_fem_cons_0001b_kongo_monarchy_kingdom_DUCHESS = { # "Duchesse"
67
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } AND = { tag = KON government = monarchy } }
68
+ }
69
+ frloc_ruler_fem_cons_0001b_kongo_monarchy_kingdom_MWENE_KONGO_fem = { # "Manikongo"
70
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = monarchy } }
71
+ }
72
+ frloc_ruler_fem_cons_0001b_kongo_monarchy_kingdom_GREAT_MWENE_KONGO_fem = { # "Manikongo supr阭e"
73
+ AND = { government_rank = 3 AND = { tag = KON government = monarchy } }
74
+ }
75
+ frloc_ruler_masc_cons_0002_islamic_caliphate_CALIPH = { # "Calife"
76
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
77
+ }
78
+ frloc_ruler_fem_cons_0002_islamic_caliphate_CALIPHA = { # "Califesse"
79
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
80
+ }
81
+ frloc_ruler_masc_cons_0003_revolutionary_peasant_republic_GREAT_CONSUL = { # "Consul supr阭e"
82
+ AND = { government_rank = 3 is_revolutionary_republic_trigger = yes have_had_reform = peasants_republic }
83
+ }
84
+ frloc_ruler_fem_cons_0003_revolutionary_peasant_republic_GREAT_CONSULESS = { # "Consule supr阭e"
85
+ AND = { government_rank = 3 is_revolutionary_republic_trigger = yes have_had_reform = peasants_republic }
86
+ }
87
+ frloc_ruler_masc_cons_0004_revolutionary_spanish_republic_PRESIDENT = { # "Pr閟ident"
88
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes tag = SPA }
89
+ }
90
+ frloc_ruler_fem_cons_0004_revolutionary_spanish_republic_PRESIDENT_fem = { # "Pr閟idente"
91
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes tag = SPA }
92
+ }
93
+ frloc_ruler_masc_cons_0005_revolutionary_swedish_republic_FIRST_LAWSPEAKER = { # "Premier justicier"
94
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = SWE AND = { tag = SCA NOT = { was_tag = DAN } NOT = { was_tag = NOR } } } }
95
+ }
96
+ frloc_ruler_fem_cons_0005_revolutionary_swedish_republic_FIRST_LAWSPEAKER_fem = { # "Premi鑢e justici鑢e"
97
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = SWE AND = { tag = SCA NOT = { was_tag = DAN } NOT = { was_tag = NOR } } } }
98
+ }
99
+ frloc_ruler_masc_cons_0006_revolutionary_danish_republic_FIRST_LAWSPEAKER = { # "Premier justicier"
100
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = DAN tag = NOR AND = { tag = SCA OR = { was_tag = DAN was_tag = NOR } } } }
101
+ }
102
+ frloc_ruler_fem_cons_0006_revolutionary_danish_republic_FIRST_LAWSPEAKER_fem = { # "Premi鑢e justici鑢e"
103
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = DAN tag = NOR AND = { tag = SCA OR = { was_tag = DAN was_tag = NOR } } } }
104
+ }
105
+ frloc_ruler_masc_cons_0007_revolutionary_ottoman_republic_SUPREME_VIZIER = { # "Vizir supr阭e"
106
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes tag = TUR }
107
+ }
108
+ frloc_ruler_fem_cons_0007_revolutionary_ottoman_republic_SUPREME_VIZIER_fem = { # "Vizir supr阭e"
109
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes tag = TUR }
110
+ }
111
+ frloc_ruler_masc_cons_0008_revolutionary_german_republic_CHAIRMAN = { # "Pr閟ident"
112
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = GER tag = PRU tag = BAV tag = SWA tag = FKN tag = HAN tag = WES tag = SAX tag = POM } }
113
+ }
114
+ frloc_ruler_fem_cons_0008_revolutionary_german_republic_CHAIRMAN_fem = { # "Pr閟idente"
115
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes OR = { tag = GER tag = PRU tag = BAV tag = SWA tag = FKN tag = HAN tag = WES tag = SAX tag = POM } }
116
+ }
117
+ frloc_ruler_masc_cons_0009_gov_revolutionary_republic_CONSUL = { # "Consul"
118
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes }
119
+ }
120
+ frloc_ruler_fem_cons_0009_gov_revolutionary_republic_CONSULESS = { # "Consule"
121
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes }
122
+ }
123
+ frloc_ruler_masc_cons_0010_gov_polish_republic_MARSHAL = { # "Mar閏hal"
124
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = polish primary_culture = polish_new } government = republic }
125
+ }
126
+ frloc_ruler_masc_cons_0010_gov_polish_republic_SERENE_MARSHAL = { # "Mar閏hal s閞閚issime"
127
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = polish primary_culture = polish_new } government = republic }
128
+ }
129
+ frloc_ruler_masc_cons_0010_gov_polish_republic_MOST_SERNE_MARSHAL = { # "Tr鑣 s閞閚issime mar閏hal"
130
+ AND = { government_rank = 3 OR = { primary_culture = polish primary_culture = polish_new } government = republic }
131
+ }
132
+ frloc_ruler_fem_cons_0010_gov_polish_republic_MARSHAL_fem = { # "Mar閏hale"
133
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = polish primary_culture = polish_new } government = republic }
134
+ }
135
+ frloc_ruler_fem_cons_0010_gov_polish_republic_SERENE_MARSHAL_fem = { # "Mar閏hale s閞閚issime"
136
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = polish primary_culture = polish_new } government = republic }
137
+ }
138
+ frloc_ruler_fem_cons_0010_gov_polish_republic_MOST_SERNE_MARSHAL_fem = { # "Tr鑣 s閞閚issime mar閏hale"
139
+ AND = { government_rank = 3 OR = { primary_culture = polish primary_culture = polish_new } government = republic }
140
+ }
141
+ frloc_ruler_masc_cons_0011_gov_german_empire_KAISER = { # "Kaiser"
142
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
143
+ }
144
+ frloc_ruler_fem_cons_0011_gov_german_empire_KAISERIN = { # "Kaiserin"
145
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
146
+ }
147
+ frloc_ruler_masc_cons_0012_gov_prussian_republic_FIELD_MARSHAL = { # "Mar閏hal"
148
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = prussian_republic_reform }
149
+ }
150
+ frloc_ruler_fem_cons_0012_gov_prussian_republic_FIELD_MARSHAL_fem = { # "Mar閏hale"
151
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = prussian_republic_reform }
152
+ }
153
+ frloc_ruler_masc_vow_0013_gov_admiralty_LORD_ADMIRAL = { # "Amiral"
154
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
155
+ }
156
+ frloc_ruler_masc_cons_0013_gov_admiralty_LORD_HIGH_ADMIRAL = { # "Grand amiral"
157
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
158
+ }
159
+ frloc_ruler_masc_vow_0013_gov_admiralty_SUPREME_ADMIRAL = { # "Amiral supr阭e"
160
+ AND = { government_rank = 3 NOT = { OR = { government_rank = 1 government_rank = 2 } } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
161
+ }
162
+ frloc_ruler_fem_vow_0013_gov_admiralty_LORD_ADMIRAL_fem = { # "Amirale"
163
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
164
+ }
165
+ frloc_ruler_fem_cons_0013_gov_admiralty_LORD_HIGH_ADMIRAL_fem = { # "Grande amirale"
166
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
167
+ }
168
+ frloc_ruler_fem_vow_0013_gov_admiralty_SUPREME_ADMIRAL_fem = { # "Amirale supr阭e"
169
+ AND = { government_rank = 3 NOT = { OR = { government_rank = 1 government_rank = 2 } } OR = { has_reform = admiralty_regime_reform has_reform = admiralty_reform } }
170
+ }
171
+ frloc_ruler_masc_cons_0014_gov_english_commonwealth_LORD_PROTECTOR = { # "Seigneur protecteur"
172
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = protectorate_parliament_reform }
173
+ }
174
+ frloc_ruler_fem_cons_0014_gov_english_commonwealth_LADY_PROTECTOR = { # "Dame protectrice"
175
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = protectorate_parliament_reform }
176
+ }
177
+ frloc_ruler_masc_cons_0015_savonarola_unique_BROTHER = { # "Fr鑢e"
178
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_ruler_flag = savonarola_flag }
179
+ }
180
+ frloc_ruler_fem_cons_0015_savonarola_unique_SISTER = { # "S渦r"
181
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_ruler_flag = savonarola_flag }
182
+ }
183
+ frloc_ruler_masc_cons_0016_military_dictatorship_CAPTAIN_GENERAL = { # "Capitaine g閚閞al"
184
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = military_dictatorship_reform has_reform = military_rulership_reform } }
185
+ }
186
+ frloc_ruler_fem_cons_0016_military_dictatorship_CAPTAIN_GENERAL_fem = { # "Capitaine g閚閞ale"
187
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = military_dictatorship_reform has_reform = military_rulership_reform } }
188
+ }
189
+ frloc_ruler_masc_vow_0017_greek_pirate_government_ARCHPIRATE = { # "Archipirate"
190
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } primary_culture = greek }
191
+ }
192
+ frloc_ruler_fem_vow_0017_greek_pirate_government_ARCHPIRATE = { # "Archipirate"
193
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } primary_culture = greek }
194
+ }
195
+ frloc_ruler_masc_cons_0018_pirate_daimyo_government_LORD = { # "Seigneur"
196
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = SOO has_government_attribute = is_pirate_republic_reform is_subject_of_type = daimyo_vassal }
197
+ }
198
+ frloc_ruler_fem_cons_0018_pirate_daimyo_government_LADY = { # "Dame"
199
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = SOO has_government_attribute = is_pirate_republic_reform is_subject_of_type = daimyo_vassal }
200
+ }
201
+ frloc_ruler_masc_cons_0019_pirate_government_CAPTAIN = { # "Capitaine"
202
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
203
+ }
204
+ frloc_ruler_masc_cons_0019_pirate_government_GRAND_CAPTAIN = { # "Grand capitaine"
205
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
206
+ }
207
+ frloc_ruler_masc_cons_0019_pirate_government_GRAND_ADMIRAL = { # "Grand amiral"
208
+ AND = { government_rank = 3 has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
209
+ }
210
+ frloc_ruler_fem_cons_0019_pirate_government_CAPTAIN_fem = { # "Capitaine"
211
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
212
+ }
213
+ frloc_ruler_fem_cons_0019_pirate_government_GRAND_CAPTAIN_fem = { # "Grande capitaine"
214
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
215
+ }
216
+ frloc_ruler_fem_cons_0019_pirate_government_ADMIRAL_fem = { # "Grande amirale"
217
+ AND = { government_rank = 3 has_government_attribute = is_pirate_republic_reform NOT = { has_reform = pirate_king_reform } NOT = { primary_culture = greek } }
218
+ }
219
+ frloc_ruler_masc_cons_0020_pirate_kingdom_PIRATE_PRINCE = { # "Prince pirate"
220
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = pirate_king_reform }
221
+ }
222
+ frloc_ruler_masc_cons_0020_pirate_kingdom_PIRATE_KING = { # "Roi pirate"
223
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = pirate_king_reform }
224
+ }
225
+ frloc_ruler_masc_vow_0020_pirate_kingdom_PIRATE_EMPEROR = { # "Empereur pirate"
226
+ AND = { government_rank = 3 has_reform = pirate_king_reform }
227
+ }
228
+ frloc_ruler_fem_cons_0020_pirate_kingdom_PIRATE_PRINCESS = { # "Princesse pirate"
229
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = pirate_king_reform }
230
+ }
231
+ frloc_ruler_fem_cons_0020_pirate_kingdom_PIRATE_QUEEN = { # "Reine pirate"
232
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = pirate_king_reform }
233
+ }
234
+ frloc_ruler_fem_vow_0020_pirate_kingdom_PIRATE_EMPRESS = { # "Imp閞atrice pirate"
235
+ AND = { government_rank = 3 has_reform = pirate_king_reform }
236
+ }
237
+ frloc_ruler_masc_cons_0021_synthetic_nation_SYNTH_RULER_MAIN_CONDUIT = { # "Processeur central"
238
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = SYN }
239
+ }
240
+ frloc_ruler_fem_cons_0021_synthetic_nation_SYNTH_RULER_MAIN_CONDUIT_fem = { # "Conduite principale"
241
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = SYN }
242
+ }
243
+ frloc_ruler_masc_cons_0022_yuan_empire_JINONG = { # "Jinong"
244
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
245
+ }
246
+ frloc_ruler_masc_cons_0022_yuan_empire_KHAN = { # "Kh鈔"
247
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
248
+ }
249
+ frloc_ruler_masc_cons_0022_yuan_empire_KHAGAN = { # "Khagan"
250
+ AND = { government_rank = 3 OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
251
+ }
252
+ frloc_ruler_fem_cons_0022_yuan_empire_JINONG = { # "Jinong"
253
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
254
+ }
255
+ frloc_ruler_fem_cons_0022_yuan_empire_KHATUN = { # "Khatoun"
256
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
257
+ }
258
+ frloc_ruler_fem_cons_0022_yuan_empire_GREAT_KHATUN = { # "Grande khatoun"
259
+ AND = { government_rank = 3 OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
260
+ }
261
+ frloc_ruler_masc_vow_0023_ilkhanate_march_ILKHAN = { # "蝜kh鈔"
262
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
263
+ }
264
+ frloc_ruler_fem_vow_0023_ilkhanate_march_ILKHATUN = { # "蝜khatoun"
265
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
266
+ }
267
+ frloc_ruler_masc_vow_0024_celestial_parliament_EMPEROR = { # "Empereur"
268
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
269
+ }
270
+ frloc_ruler_fem_vow_0024_celestial_parliament_EMPRESS = { # "Imp閞atrice"
271
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
272
+ }
273
+ frloc_ruler_masc_cons_0025_ottoman_marches_PASHA = { # "Pacha"
274
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
275
+ }
276
+ frloc_ruler_fem_cons_0025_ottoman_marches_PASHA = { # "Pacha"
277
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
278
+ }
279
+ frloc_ruler_masc_cons_0026_ottoman_vassals_BEY = { # "Bey"
280
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
281
+ }
282
+ frloc_ruler_fem_cons_0026_ottoman_vassals_HATUN = { # "Hatun"
283
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
284
+ }
285
+ frloc_ruler_masc_cons_0026b_ottoman_eyalets_BEYLERBEY = { # "Beylerbey"
286
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
287
+ }
288
+ frloc_ruler_fem_cons_0026b_ottoman_eyalets_BEYLERBEY = { # "Beylerbey"
289
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
290
+ }
291
+ frloc_ruler_masc_cons_0026c_ottoman_barbary_eyalets_DEY = { # "Dey"
292
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
293
+ }
294
+ frloc_ruler_masc_cons_0026c_ottoman_barbary_eyalets_BEYLERBEY = { # "Beylerbey"
295
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
296
+ }
297
+ frloc_ruler_fem_cons_0026c_ottoman_barbary_eyalets_DEY = { # "Dey"
298
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
299
+ }
300
+ frloc_ruler_fem_cons_0026c_ottoman_barbary_eyalets_BEYLERBEY = { # "Beylerbey"
301
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
302
+ }
303
+ frloc_ruler_masc_cons_0027_march_christian_monarchy_MARGRAVE = { # "Margrave"
304
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
305
+ }
306
+ frloc_ruler_masc_cons_0027_march_christian_monarchy_VICEROY = { # "Vice-roi"
307
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
308
+ }
309
+ frloc_ruler_masc_vow_0027_march_christian_monarchy_EMPEROR = { # "Empereur"
310
+ AND = { government_rank = 3 government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
311
+ }
312
+ frloc_ruler_fem_cons_0027_march_christian_monarchy_MARGRAVINE = { # "Margravine"
313
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
314
+ }
315
+ frloc_ruler_fem_cons_0027_march_christian_monarchy_VICEREINE = { # "Vice-reine"
316
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
317
+ }
318
+ frloc_ruler_fem_vow_0027_march_christian_monarchy_EMPRESS = { # "Imp閞atrice"
319
+ AND = { government_rank = 3 government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
320
+ }
321
+ frloc_ruler_masc_cons_0028_gov_papal_government_elector_POPE_ELECTOR = { # "Pape-閘ecteur"
322
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform is_elector = yes }
323
+ }
324
+ frloc_ruler_fem_cons_0028_gov_papal_government_elector_POPETTE_ELECTOR = { # "Papesse-閘ectrice"
325
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform is_elector = yes }
326
+ }
327
+ frloc_ruler_masc_vow_0029_palatine_electorate_ELECTOR_PALATINE = { # "蒷ecteur palatin"
328
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
329
+ }
330
+ frloc_ruler_masc_vow_0029_palatine_electorate_EMPEROR = { # "Empereur"
331
+ AND = { government_rank = 3 government = monarchy is_elector = yes tag = PAL }
332
+ }
333
+ frloc_ruler_fem_vow_0029_palatine_electorate_ELECTRESS_PALATINE = { # "蒷ectrice palatine"
334
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
335
+ }
336
+ frloc_ruler_fem_vow_0029_palatine_electorate_EMPRESS = { # "Imp閞atrice"
337
+ AND = { government_rank = 3 government = monarchy is_elector = yes tag = PAL }
338
+ }
339
+ frloc_ruler_masc_cons_0030_palatine_monarchy_COUNT_PALATINE = { # "Comte palatin"
340
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PAL }
341
+ }
342
+ frloc_ruler_masc_cons_0030_palatine_monarchy_KING_PALATINE = { # "Roi palatin"
343
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PAL }
344
+ }
345
+ frloc_ruler_masc_vow_0030_palatine_monarchy_EMPEROR = { # "Empereur"
346
+ AND = { government_rank = 3 government = monarchy tag = PAL }
347
+ }
348
+ frloc_ruler_fem_cons_0030_palatine_monarchy_COUNTESS_PALATINE = { # "Comtesse palatine"
349
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PAL }
350
+ }
351
+ frloc_ruler_fem_cons_0030_palatine_monarchy_QUEEN_PALATINE = { # "Reine palatine"
352
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PAL }
353
+ }
354
+ frloc_ruler_fem_vow_0030_palatine_monarchy_EMPRESS = { # "Imp閞atrice"
355
+ AND = { government_rank = 3 government = monarchy tag = PAL }
356
+ }
357
+ frloc_ruler_masc_cons_0031_herzegovina_monarchy_PRINCE_HERCEG = { # "Vojovda"
358
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = HRZ }
359
+ }
360
+ frloc_ruler_masc_vow_0031_herzegovina_monarchy_HERCEG = { # "Herceg"
361
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = HRZ }
362
+ }
363
+ frloc_ruler_fem_cons_0031_herzegovina_monarchy_PRINCESS_HERCEGI = { # "Vojvotkinja"
364
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = HRZ }
365
+ }
366
+ frloc_ruler_fem_vow_0031_herzegovina_monarchy_HERCEGI = { # "Hercegn?
367
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = HRZ }
368
+ }
369
+ frloc_ruler_masc_cons_0032_holy_roman_electors_monarchy_PRINCE_ELECTOR = { # "Prince-閘ecteur"
370
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
371
+ }
372
+ frloc_ruler_masc_cons_0032_holy_roman_electors_monarchy_KING_ELECTOR = { # "Roi-閘ecteur"
373
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
374
+ }
375
+ frloc_ruler_masc_vow_0032_holy_roman_electors_monarchy_EMPEROR = { # "Empereur"
376
+ AND = { government_rank = 3 government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
377
+ }
378
+ frloc_ruler_fem_cons_0032_holy_roman_electors_monarchy_PRINCESS_ELECTOR = { # "Princesse-閘ectrice"
379
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
380
+ }
381
+ frloc_ruler_fem_cons_0032_holy_roman_electors_monarchy_QUEEN_ELECTOR = { # "Reine-閘ectrice"
382
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
383
+ }
384
+ frloc_ruler_fem_vow_0032_holy_roman_electors_monarchy_EMPRESS = { # "Imp閞atrice"
385
+ AND = { government_rank = 3 government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
386
+ }
387
+ frloc_ruler_masc_vow_0033_holy_roman_electors_bishoprics_BISHOP_ELECTOR = { # "蓈阸ue-閘ecteur"
388
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = theocracy is_elector = yes is_emperor = no }
389
+ }
390
+ frloc_ruler_masc_vow_0033_holy_roman_electors_bishoprics_ARCHBISHOP_ELECTOR = { # "Archev阸ue-閘ecteur"
391
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = theocracy is_elector = yes is_emperor = no }
392
+ }
393
+ frloc_ruler_masc_cons_0033_holy_roman_electors_bishoprics_PATRIARCH_ELECTOR = { # "Patriarche-閘ecteur"
394
+ AND = { government_rank = 3 government = theocracy is_elector = yes is_emperor = no }
395
+ }
396
+ frloc_ruler_fem_vow_0033_holy_roman_electors_bishoprics_BISHOP_ELECTOR_fem = { # "蓈阸ue-閘ectrice"
397
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = theocracy is_elector = yes is_emperor = no }
398
+ }
399
+ frloc_ruler_fem_vow_0033_holy_roman_electors_bishoprics_ARCHBISHOP_ELECTOR_fem = { # "Archev阸ue-閘ectrice"
400
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = theocracy is_elector = yes is_emperor = no }
401
+ }
402
+ frloc_ruler_fem_cons_0033_holy_roman_electors_bishoprics_MATRIARCH_ELECTOR = { # "Matriarche-閘ectrice"
403
+ AND = { government_rank = 3 government = theocracy is_elector = yes is_emperor = no }
404
+ }
405
+ frloc_ruler_masc_cons_0034_holy_roman_electors_republic_CONSUL_ELECTOR = { # "Consul-閘ecteur"
406
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic is_elector = yes is_emperor = no }
407
+ }
408
+ frloc_ruler_masc_cons_0034_holy_roman_electors_republic_GRAND_CONSUL_ELECTOR = { # "Grand consul-閘ecteur"
409
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic is_elector = yes is_emperor = no }
410
+ }
411
+ frloc_ruler_masc_cons_0034_holy_roman_electors_republic_GREAT_CONSUL_ELECTOR = { # "Consul-閘ecteur supr阭e"
412
+ AND = { government_rank = 3 government = republic is_elector = yes is_emperor = no }
413
+ }
414
+ frloc_ruler_fem_cons_0034_holy_roman_electors_republic_CONSULESS_ELECTOR = { # "Consule-閘ectrice"
415
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic is_elector = yes is_emperor = no }
416
+ }
417
+ frloc_ruler_fem_cons_0034_holy_roman_electors_republic_GRAND_CONSULESS_ELECTOR = { # "Grande consule-閘ectrice"
418
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic is_elector = yes is_emperor = no }
419
+ }
420
+ frloc_ruler_fem_cons_0034_holy_roman_electors_republic_GREAT_CONSULESS_ELECTOR = { # "Consule-閘ectrice supr阭e"
421
+ AND = { government_rank = 3 government = republic is_elector = yes is_emperor = no }
422
+ }
423
+ frloc_ruler_masc_cons_0034b_trade_company_republic_GOVERNOR = { # "Gouverneur"
424
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = trade_company_government }
425
+ }
426
+ frloc_ruler_masc_cons_0034b_trade_company_republic_GOVERNOR_GENERAL = { # "Gouverneur g閚閞al"
427
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = trade_company_government }
428
+ }
429
+ frloc_ruler_fem_cons_0034b_trade_company_republic_GOVERNESS = { # "Gouverneure"
430
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = trade_company_government }
431
+ }
432
+ frloc_ruler_fem_cons_0034b_trade_company_republic_GOVERNESS_GENERAL = { # "Gouverneure g閚閞ale"
433
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = trade_company_government }
434
+ }
435
+ frloc_ruler_masc_cons_0035_japanese_shogunate_LORD = { # "Seigneur"
436
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
437
+ }
438
+ frloc_ruler_masc_cons_0035_japanese_shogunate_KING = { # "Roi"
439
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
440
+ }
441
+ frloc_ruler_masc_cons_0035_japanese_shogunate_SHOGUN = { # "Sh鬵un"
442
+ AND = { government_rank = 3 tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
443
+ }
444
+ frloc_ruler_fem_cons_0035_japanese_shogunate_LADY = { # "Dame"
445
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
446
+ }
447
+ frloc_ruler_fem_cons_0035_japanese_shogunate_QUEEN = { # "Reine"
448
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
449
+ }
450
+ frloc_ruler_fem_cons_0035_japanese_shogunate_SHOGUNESS = { # "Sh鬵unesse"
451
+ AND = { government_rank = 3 tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
452
+ }
453
+ frloc_ruler_masc_vow_0036_islamic_syncretism_kingdoms_EMIR = { # "蒻ir"
454
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
455
+ }
456
+ frloc_ruler_masc_cons_0036_islamic_syncretism_kingdoms_SULTAN = { # "Sultan"
457
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
458
+ }
459
+ frloc_ruler_masc_cons_0036_islamic_syncretism_kingdoms_GREAT_SULTAN = { # "Grand sultan"
460
+ AND = { government_rank = 3 government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
461
+ }
462
+ frloc_ruler_fem_vow_0036_islamic_syncretism_kingdoms_EMIRA = { # "蒻ira"
463
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
464
+ }
465
+ frloc_ruler_fem_cons_0036_islamic_syncretism_kingdoms_SULTANA = { # "Sultane"
466
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
467
+ }
468
+ frloc_ruler_fem_cons_0036_islamic_syncretism_kingdoms_GREAT_SULTANA = { # "Grande sultane"
469
+ AND = { government_rank = 3 government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
470
+ }
471
+ frloc_ruler_masc_cons_0037_french_kingdom_DUKE = { # "Duc"
472
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
473
+ }
474
+ frloc_ruler_masc_cons_0037_french_kingdom_KING = { # "Roi"
475
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
476
+ }
477
+ frloc_ruler_masc_vow_0037_french_kingdom_EMPEROR = { # "Empereur"
478
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
479
+ }
480
+ frloc_ruler_fem_cons_0037_french_kingdom_DUCHESS = { # "Duchesse"
481
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
482
+ }
483
+ frloc_ruler_fem_cons_0037_french_kingdom_QUEEN = { # "Reine"
484
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
485
+ }
486
+ frloc_ruler_fem_vow_0037_french_kingdom_EMPRESS = { # "Imp閞atrice"
487
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
488
+ }
489
+ frloc_ruler_masc_cons_0037b_dutch_monarchy_GRAND_PENSIONARY = { # "Grand pensionnaire"
490
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
491
+ }
492
+ frloc_ruler_masc_cons_0037b_dutch_monarchy_STADTHOLDER = { # "Stathouder"
493
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
494
+ }
495
+ frloc_ruler_masc_cons_0037b_dutch_monarchy_GREAT_STADTHOLDER = { # "Grand stathouder"
496
+ AND = { government_rank = 3 government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
497
+ }
498
+ frloc_ruler_fem_cons_0037b_dutch_monarchy_GRAND_PENSIONARY_fem = { # "Grande pensionnaire"
499
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
500
+ }
501
+ frloc_ruler_fem_cons_0037b_dutch_monarchy_STADTHOLDERESS = { # "Stathouderesse"
502
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
503
+ }
504
+ frloc_ruler_fem_cons_0037b_dutch_monarchy_GREAT_STADTHOLDERESS = { # "Grande stathouderesse"
505
+ AND = { government_rank = 3 government = monarchy has_reform = stadthalter_monarchy_reform NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
506
+ }
507
+ frloc_ruler_masc_cons_0038_sharifs_of_mecca_SHARIF = { # "Ch閞if"
508
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
509
+ }
510
+ frloc_ruler_masc_cons_0038_sharifs_of_mecca_GRAND_SHARIF = { # "Grand ch閞if"
511
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
512
+ }
513
+ frloc_ruler_masc_cons_0038_sharifs_of_mecca_GREAT_SHARIF = { # "Ch閞if supr阭e"
514
+ AND = { government_rank = 3 religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
515
+ }
516
+ frloc_ruler_fem_cons_0038_sharifs_of_mecca_SHARIFA = { # "Ch閞ifa"
517
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
518
+ }
519
+ frloc_ruler_fem_cons_0038_sharifs_of_mecca_GRAND_SHARIFA = { # "Grande ch閞ifa"
520
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
521
+ }
522
+ frloc_ruler_fem_cons_0038_sharifs_of_mecca_GREAT_SHARIFA = { # "Ch閞ifa supr阭e"
523
+ AND = { government_rank = 3 religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
524
+ }
525
+ frloc_ruler_masc_cons_0039_avar_nutsals_NUTSAL = { # "Nutsal"
526
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = AVR government = monarchy }
527
+ }
528
+ frloc_ruler_masc_cons_0039_avar_nutsals_KHAN = { # "Kh鈔"
529
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = AVR government = monarchy }
530
+ }
531
+ frloc_ruler_masc_cons_0039_avar_nutsals_KHAGAN = { # "Khagan"
532
+ AND = { government_rank = 3 tag = AVR government = monarchy }
533
+ }
534
+ frloc_ruler_fem_cons_0039_avar_nutsals_NUTSAL_fem = { # "Nutsal"
535
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = AVR government = monarchy }
536
+ }
537
+ frloc_ruler_fem_cons_0039_avar_nutsals_KHATUN = { # "Khatoun"
538
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = AVR government = monarchy }
539
+ }
540
+ frloc_ruler_fem_cons_0039_avar_nutsals_GREAT_KHATUN = { # "Grande khatoun"
541
+ AND = { government_rank = 3 tag = AVR government = monarchy }
542
+ }
543
+ #frloc_ruler_masc_vow_0040_georgian_monarchy_ATABEG = { # "Atabeg"
544
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
545
+ #}
546
+ #frloc_ruler_masc_cons_0040_georgian_monarchy_KING = { # "Roi"
547
+ # AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = georgian }
548
+ #}
549
+ #frloc_ruler_masc_vow_0040_georgian_monarchy_EMPEROR = { # "Empereur"
550
+ # AND = { government_rank = 3 government = monarchy primary_culture = georgian }
551
+ #}
552
+ #frloc_ruler_fem_vow_0040_georgian_monarchy_ATABEG_fem = { # "Atabeg"
553
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
554
+ #}
555
+ #frloc_ruler_fem_cons_0040_georgian_monarchy_QUEEN = { # "Reine"
556
+ # AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = georgian }
557
+ #}
558
+ #frloc_ruler_fem_vow_0040_georgian_monarchy_EMPRESS = { # "Imp閞atrice"
559
+ # AND = { government_rank = 3 government = monarchy primary_culture = georgian }
560
+ #}
561
+ frloc_ruler_masc_cons_0041_dais_of_najran_DAI_male = { # "D??
562
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim tag = NJR }
563
+ }
564
+ frloc_ruler_masc_cons_0041_dais_of_najran_SULTAN = { # "Sultan"
565
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim tag = NJR }
566
+ }
567
+ frloc_ruler_masc_cons_0041_dais_of_najran_PADISHAH = { # "P鈊ishah"
568
+ AND = { government_rank = 3 religion_group = muslim tag = NJR }
569
+ }
570
+ frloc_ruler_fem_cons_0041_dais_of_najran_DAI_female = { # "D??
571
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim tag = NJR }
572
+ }
573
+ frloc_ruler_fem_cons_0041_dais_of_najran_SULTANA = { # "Sultane"
574
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim tag = NJR }
575
+ }
576
+ frloc_ruler_fem_cons_0041_dais_of_najran_PADISHAH = { # "P鈊ishah"
577
+ AND = { government_rank = 3 religion_group = muslim tag = NJR }
578
+ }
579
+ frloc_ruler_masc_cons_0042_malian_monarchy_FAAMA = { # "Faama"
580
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = MAL }
581
+ }
582
+ frloc_ruler_masc_cons_0042_malian_monarchy_MANSA = { # "Mansa"
583
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = MAL }
584
+ }
585
+ frloc_ruler_masc_cons_0042_malian_monarchy_GREAT_MANSA = { # "Grand mansa"
586
+ AND = { government_rank = 3 government = monarchy tag = MAL }
587
+ }
588
+ frloc_ruler_fem_cons_0042_malian_monarchy_FAAMA = { # "Faama"
589
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = MAL }
590
+ }
591
+ frloc_ruler_fem_cons_0042_malian_monarchy_MANSA = { # "Mansa"
592
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = MAL }
593
+ }
594
+ frloc_ruler_fem_cons_0042_malian_monarchy_GREAT_MANSA_fem = { # "Grande mansa"
595
+ AND = { government_rank = 3 government = monarchy tag = MAL }
596
+ }
597
+ frloc_ruler_masc_cons_0043_arabic_tribal_SHEIKH = { # "Cheikh"
598
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
599
+ }
600
+ frloc_ruler_masc_vow_0043_arabic_tribal_EMIR = { # "蒻ir"
601
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
602
+ }
603
+ frloc_ruler_masc_cons_0043_arabic_tribal_GREAT_EMIR = { # "Grand 閙ir"
604
+ AND = { government_rank = 3 religion_group = muslim primary_culture = bedouin_arabic government = tribal }
605
+ }
606
+ frloc_ruler_fem_cons_0043_arabic_tribal_SHEIKHA = { # "Cheikha"
607
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
608
+ }
609
+ frloc_ruler_fem_vow_0043_arabic_tribal_EMIRA = { # "蒻ira"
610
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
611
+ }
612
+ frloc_ruler_fem_cons_0043_arabic_tribal_GREAT_EMIRA = { # "Grande 閙ira"
613
+ AND = { government_rank = 3 religion_group = muslim primary_culture = bedouin_arabic government = tribal }
614
+ }
615
+ frloc_ruler_masc_cons_0044_muslim_tribal_MALIK = { # "M鈒ik"
616
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
617
+ }
618
+ frloc_ruler_masc_cons_0044_muslim_tribal_SULTAN = { # "Sultan"
619
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
620
+ }
621
+ frloc_ruler_masc_cons_0044_muslim_tribal_GREAT_SULTAN = { # "Grand sultan"
622
+ AND = { government_rank = 3 religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
623
+ }
624
+ frloc_ruler_fem_cons_0044_muslim_tribal_MALIKAH = { # "M鈒ika"
625
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
626
+ }
627
+ frloc_ruler_fem_cons_0044_muslim_tribal_SULTANA = { # "Sultane"
628
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
629
+ }
630
+ frloc_ruler_fem_cons_0044_muslim_tribal_GREAT_SULTANA = { # "Grande sultane"
631
+ AND = { government_rank = 3 religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
632
+ }
633
+ frloc_ruler_masc_cons_0045_kathiawar_tribal_monarchy_JAM = { # "J鈓"
634
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
635
+ }
636
+ frloc_ruler_masc_cons_0045_kathiawar_tribal_monarchy_GRAND_JAM = { # "Grand j鈓"
637
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
638
+ }
639
+ frloc_ruler_masc_cons_0045_kathiawar_tribal_monarchy_GREAT_JAM = { # "J鈓 supr阭e"
640
+ AND = { government_rank = 3 government = monarchy OR = { tag = KAT primary_culture = sindhi } }
641
+ }
642
+ frloc_ruler_fem_cons_0045_kathiawar_tribal_monarchy_JAM_fem = { # "J鈓at"
643
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
644
+ }
645
+ frloc_ruler_fem_cons_0045_kathiawar_tribal_monarchy_GRAND_JAM_fem = { # "Grande j鈓at"
646
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
647
+ }
648
+ frloc_ruler_fem_cons_0045_kathiawar_tribal_monarchy_GREAT_JAM_fem = { # "J鈓at supr阭e"
649
+ AND = { government_rank = 3 government = monarchy OR = { tag = KAT primary_culture = sindhi } }
650
+ }
651
+ frloc_ruler_masc_cons_0046_sistan_monarchy_MALIK = { # "M鈒ik"
652
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
653
+ }
654
+ frloc_ruler_masc_cons_0046_sistan_monarchy_SHAH = { # "Sh鈎"
655
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = SIS }
656
+ }
657
+ frloc_ruler_masc_cons_0046_sistan_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
658
+ AND = { government_rank = 3 government = monarchy tag = SIS }
659
+ }
660
+ frloc_ruler_fem_cons_0046_sistan_monarchy_MALIKAH = { # "M鈒ika"
661
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
662
+ }
663
+ frloc_ruler_fem_cons_0046_sistan_monarchy_SHAH = { # "Sh鈎"
664
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = SIS }
665
+ }
666
+ frloc_ruler_fem_cons_0046_sistan_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
667
+ AND = { government_rank = 3 government = monarchy tag = SIS }
668
+ }
669
+ frloc_ruler_masc_cons_0046b_persian_monarchy_SHEIKH = { # "Cheikh"
670
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
671
+ }
672
+ frloc_ruler_masc_cons_0046b_persian_monarchy_SHAH = { # "Sh鈎"
673
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
674
+ }
675
+ frloc_ruler_masc_cons_0046b_persian_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
676
+ AND = { government_rank = 3 has_country_flag = turkoman_adopt_shahanshah_title }
677
+ }
678
+ frloc_ruler_fem_cons_0046b_persian_monarchy_SHEIKHA = { # "Cheikha"
679
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
680
+ }
681
+ frloc_ruler_fem_cons_0046b_persian_monarchy_SHAH = { # "Sh鈎"
682
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
683
+ }
684
+ frloc_ruler_fem_cons_0046b_persian_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
685
+ AND = { government_rank = 3 has_country_flag = turkoman_adopt_shahanshah_title }
686
+ }
687
+ frloc_ruler_masc_cons_0047_persian_monarchy_SHEIKH = { # "Cheikh"
688
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
689
+ }
690
+ frloc_ruler_masc_cons_0047_persian_monarchy_SHAH = { # "Sh鈎"
691
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = iranian }
692
+ }
693
+ frloc_ruler_masc_cons_0047_persian_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
694
+ AND = { government_rank = 3 government = monarchy culture_group = iranian }
695
+ }
696
+ frloc_ruler_fem_cons_0047_persian_monarchy_SHEIKHA = { # "Cheikha"
697
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
698
+ }
699
+ frloc_ruler_fem_cons_0047_persian_monarchy_SHAH = { # "Sh鈎"
700
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = iranian }
701
+ }
702
+ frloc_ruler_fem_cons_0047_persian_monarchy_SHAHANSHAH = { # "Sh鈎ansh鈎"
703
+ AND = { government_rank = 3 government = monarchy culture_group = iranian }
704
+ }
705
+ frloc_ruler_masc_cons_0048_somali_monarchy_GERAD = { # "Garad"
706
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = somali }
707
+ }
708
+ frloc_ruler_masc_cons_0048_somali_monarchy_SULTAN = { # "Sultan"
709
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = somali }
710
+ }
711
+ frloc_ruler_masc_cons_0048_somali_monarchy_GREAT_SULTAN = { # "Grand sultan"
712
+ AND = { government_rank = 3 government = monarchy primary_culture = somali }
713
+ }
714
+ frloc_ruler_fem_cons_0048_somali_monarchy_GERAD = { # "Garad"
715
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = somali }
716
+ }
717
+ frloc_ruler_fem_cons_0048_somali_monarchy_SULTANA = { # "Sultane"
718
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = somali }
719
+ }
720
+ frloc_ruler_fem_cons_0048_somali_monarchy_GREAT_SULTANA = { # "Grande sultane"
721
+ AND = { government_rank = 3 government = monarchy primary_culture = somali }
722
+ }
723
+ frloc_ruler_masc_cons_0049_lithuanian_monarchy_GRAND_DUKE = { # "Grand-duc"
724
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = LIT government = monarchy }
725
+ }
726
+ frloc_ruler_masc_cons_0049_lithuanian_monarchy_KING = { # "Roi"
727
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = LIT government = monarchy }
728
+ }
729
+ frloc_ruler_masc_vow_0049_lithuanian_monarchy_EMPEROR = { # "Empereur"
730
+ AND = { government_rank = 3 tag = LIT government = monarchy }
731
+ }
732
+ frloc_ruler_fem_cons_0049_lithuanian_monarchy_GRAND_DUCHESS = { # "Grande-duchesse"
733
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = LIT government = monarchy }
734
+ }
735
+ frloc_ruler_fem_cons_0049_lithuanian_monarchy_QUEEN = { # "Reine"
736
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = LIT government = monarchy }
737
+ }
738
+ frloc_ruler_fem_vow_0049_lithuanian_monarchy_EMPRESS = { # "Imp閞atrice"
739
+ AND = { government_rank = 3 tag = LIT government = monarchy }
740
+ }
741
+ frloc_ruler_masc_vow_0050_cristopher_of_bavaria_monarchy_ARCHDUKE = { # "Archiduc"
742
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
743
+ }
744
+ frloc_ruler_masc_vow_0050_cristopher_of_bavaria_monarchy_ARCHKING = { # "Archi-roi"
745
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
746
+ }
747
+ frloc_ruler_masc_vow_0050_cristopher_of_bavaria_monarchy_EMPEROR = { # "Empereur"
748
+ AND = { government_rank = 3 OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
749
+ }
750
+ frloc_ruler_fem_vow_0050_cristopher_of_bavaria_monarchy_ARCHDUCHESS = { # "Archiduchesse"
751
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
752
+ }
753
+ frloc_ruler_fem_vow_0050_cristopher_of_bavaria_monarchy_ARCHQUEEN = { # "Archi-reine"
754
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
755
+ }
756
+ frloc_ruler_fem_vow_0050_cristopher_of_bavaria_monarchy_EMPRESS = { # "Imp閞atrice"
757
+ AND = { government_rank = 3 OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
758
+ }
759
+ frloc_ruler_masc_cons_0051_hunyadi_regent_monarchy_DUKE = { # "Duc"
760
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
761
+ }
762
+ frloc_ruler_masc_cons_0051_hunyadi_regent_monarchy_regent_male = { # "R間ent"
763
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
764
+ }
765
+ frloc_ruler_masc_vow_0051_hunyadi_regent_monarchy_EMPEROR = { # "Empereur"
766
+ AND = { government_rank = 3 tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
767
+ }
768
+ frloc_ruler_fem_cons_0051_hunyadi_regent_monarchy_DUCHESS = { # "Duchesse"
769
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
770
+ }
771
+ frloc_ruler_fem_cons_0051_hunyadi_regent_monarchy_QUEEN = { # "Reine"
772
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
773
+ }
774
+ frloc_ruler_fem_vow_0051_hunyadi_regent_monarchy_EMPRESS = { # "Imp閞atrice"
775
+ AND = { government_rank = 3 tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
776
+ }
777
+ frloc_ruler_masc_vow_0052_austrian_monarchy_ARCHDUKE = { # "Archiduc"
778
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HAB government = monarchy }
779
+ }
780
+ frloc_ruler_masc_cons_0052_austrian_monarchy_KING = { # "Roi"
781
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HAB government = monarchy }
782
+ }
783
+ frloc_ruler_masc_vow_0052_austrian_monarchy_EMPEROR = { # "Empereur"
784
+ AND = { government_rank = 3 tag = HAB government = monarchy }
785
+ }
786
+ frloc_ruler_fem_vow_0052_austrian_monarchy_ARCHDUCHESS = { # "Archiduchesse"
787
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HAB government = monarchy }
788
+ }
789
+ frloc_ruler_fem_cons_0052_austrian_monarchy_QUEEN = { # "Reine"
790
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HAB government = monarchy }
791
+ }
792
+ frloc_ruler_fem_vow_0052_austrian_monarchy_EMPRESS = { # "Imp閞atrice"
793
+ AND = { government_rank = 3 tag = HAB government = monarchy } #1/Dir/austrian_monarchy
794
+ }
795
+ frloc_ruler_masc_cons_0053_turkish_monarchy_BEY = { # "Bey"
796
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = turkish }
797
+ }
798
+ frloc_ruler_masc_cons_0053_turkish_monarchy_SULTAN = { # "Sultan"
799
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = turkish }
800
+ }
801
+ frloc_ruler_masc_cons_0053_turkish_monarchy_PADISHAH = { # "P鈊ishah"
802
+ AND = { government_rank = 3 government = monarchy primary_culture = turkish }
803
+ }
804
+ frloc_ruler_fem_cons_0053_turkish_monarchy_HATUN = { # "Hatun"
805
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = turkish }
806
+ }
807
+ frloc_ruler_fem_cons_0053_turkish_monarchy_SULTANA = { # "Sultane"
808
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = turkish }
809
+ }
810
+ frloc_ruler_fem_cons_0053_turkish_monarchy_PADISHAH = { # "P鈊ishah"
811
+ AND = { government_rank = 3 government = monarchy primary_culture = turkish }
812
+ }
813
+ frloc_ruler_masc_cons_0054_theodoro_monarchy_PRINCE = { # "Prince"
814
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = FEO }
815
+ }
816
+ frloc_ruler_masc_cons_0054_theodoro_monarchy_KING = { # "Roi"
817
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = FEO }
818
+ }
819
+ frloc_ruler_masc_vow_0054_theodoro_monarchy_EMPEROR = { # "Empereur"
820
+ AND = { government_rank = 3 government = monarchy tag = FEO }
821
+ }
822
+ frloc_ruler_fem_cons_0054_theodoro_monarchy_PRINCESS = { # "Princesse"
823
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = FEO }
824
+ }
825
+ frloc_ruler_fem_cons_0054_theodoro_monarchy_QUEEN = { # "Reine"
826
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = FEO }
827
+ }
828
+ frloc_ruler_fem_vow_0054_theodoro_monarchy_EMPRESS = { # "Imp閞atrice"
829
+ AND = { government_rank = 3 government = monarchy tag = FEO }
830
+ }
831
+ frloc_ruler_masc_cons_0055_croatian_monarchy_BAN_TITLE = { # "Ban"
832
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
833
+ }
834
+ frloc_ruler_masc_cons_0055_croatian_monarchy_KRALJ = { # "Kralj"
835
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
836
+ }
837
+ frloc_ruler_masc_cons_0055_croatian_monarchy_CAR = { # "Tsar"
838
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
839
+ }
840
+ frloc_ruler_fem_cons_0055_croatian_monarchy_BAN_TITLE = { # "Ban"
841
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
842
+ }
843
+ frloc_ruler_fem_cons_0055_croatian_monarchy_KRALJICA = { # "Kraljitsa"
844
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
845
+ }
846
+ frloc_ruler_fem_cons_0055_croatian_monarchy_CARICA = { # "Tsarine"
847
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
848
+ }
849
+ frloc_ruler_masc_cons_0056_finnish_monarchy_GRAND_DUKE = { # "Grand-duc"
850
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = finnish }
851
+ }
852
+ frloc_ruler_masc_cons_0056_finnish_monarchy_KING = { # "Roi"
853
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = finnish }
854
+ }
855
+ frloc_ruler_masc_vow_0056_finnish_monarchy_EMPEROR = { # "Empereur"
856
+ AND = { government_rank = 3 government = monarchy primary_culture = finnish }
857
+ }
858
+ frloc_ruler_fem_cons_0056_finnish_monarchy_GRAND_DUCHESS = { # "Grande-duchesse"
859
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = finnish }
860
+ }
861
+ frloc_ruler_fem_cons_0056_finnish_monarchy_QUEEN = { # "Reine"
862
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = finnish }
863
+ }
864
+ frloc_ruler_fem_vow_0056_finnish_monarchy_EMPRESS = { # "Imp閞atrice"
865
+ AND = { government_rank = 3 government = monarchy primary_culture = finnish }
866
+ }
867
+ frloc_ruler_masc_cons_0057_grand_duchy_of_tuscany_GRAND_DUKE = { # "Grand-duc"
868
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = TUS }
869
+ }
870
+ frloc_ruler_masc_cons_0057_grand_duchy_of_tuscany_KING = { # "Roi"
871
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = TUS }
872
+ }
873
+ frloc_ruler_masc_vow_0057_grand_duchy_of_tuscany_EMPEROR = { # "Empereur"
874
+ AND = { government_rank = 3 government = monarchy tag = TUS }
875
+ }
876
+ frloc_ruler_fem_cons_0057_grand_duchy_of_tuscany_GRAND_DUCHESS = { # "Grande-duchesse"
877
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = TUS }
878
+ }
879
+ frloc_ruler_fem_cons_0057_grand_duchy_of_tuscany_QUEEN = { # "Reine"
880
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = TUS }
881
+ }
882
+ frloc_ruler_fem_vow_0057_grand_duchy_of_tuscany_EMPRESS = { # "Imp閞atrice"
883
+ AND = { government_rank = 3 government = monarchy tag = TUS }
884
+ }
885
+ frloc_ruler_masc_cons_0058_grand_duchy_of_baden_GRAND_DUKE = { # "Grand-duc"
886
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BAD has_idea = bad_grand_duchy }
887
+ }
888
+ frloc_ruler_masc_cons_0058_grand_duchy_of_baden_KING = { # "Roi"
889
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
890
+ }
891
+ frloc_ruler_masc_vow_0058_grand_duchy_of_baden_EMPEROR = { # "Empereur"
892
+ AND = { government_rank = 3 government = monarchy tag = BAD has_idea = bad_grand_duchy }
893
+ }
894
+ frloc_ruler_fem_cons_0058_grand_duchy_of_baden_GRAND_DUCHESS = { # "Grande-duchesse"
895
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BAD has_idea = bad_grand_duchy }
896
+ }
897
+ frloc_ruler_fem_cons_0058_grand_duchy_of_baden_QUEEN = { # "Reine"
898
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
899
+ }
900
+ frloc_ruler_fem_vow_0058_grand_duchy_of_baden_EMPRESS = { # "Imp閞atrice"
901
+ AND = { government_rank = 3 government = monarchy tag = BAD has_idea = bad_grand_duchy }
902
+ }
903
+ frloc_ruler_masc_cons_0059_grand_duchy_of_luxembourg_GRAND_DUKE = { # "Grand-duc"
904
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
905
+ }
906
+ frloc_ruler_masc_cons_0059_grand_duchy_of_luxembourg_KING = { # "Roi"
907
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
908
+ }
909
+ frloc_ruler_masc_vow_0059_grand_duchy_of_luxembourg_EMPEROR = { # "Empereur"
910
+ AND = { government_rank = 3 government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
911
+ }
912
+ frloc_ruler_fem_cons_0059_grand_duchy_of_luxembourg_GRAND_DUCHESS = { # "Grande-duchesse"
913
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
914
+ }
915
+ frloc_ruler_fem_cons_0059_grand_duchy_of_luxembourg_QUEEN = { # "Reine"
916
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
917
+ }
918
+ frloc_ruler_fem_vow_0059_grand_duchy_of_luxembourg_EMPRESS = { # "Imp閞atrice"
919
+ AND = { government_rank = 3 government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
920
+ }
921
+ frloc_ruler_masc_cons_0060_serbian_feudal_monarchy_PRINC = { # "Princ"
922
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
923
+ }
924
+ frloc_ruler_masc_cons_0060_serbian_feudal_monarchy_DESPOT = { # "Despote"
925
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
926
+ }
927
+ frloc_ruler_masc_cons_0060_serbian_feudal_monarchy_CAR = { # "Tsar"
928
+ AND = { government_rank = 3 government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
929
+ }
930
+ frloc_ruler_fem_cons_0060_serbian_feudal_monarchy_PRINCEZA = { # "Princesse"
931
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
932
+ }
933
+ frloc_ruler_fem_cons_0060_serbian_feudal_monarchy_DESPOTISSA = { # "Despote"
934
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
935
+ }
936
+ frloc_ruler_fem_cons_0060_serbian_feudal_monarchy_CARICA = { # "Tsarine"
937
+ AND = { government_rank = 3 government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
938
+ }
939
+ frloc_ruler_masc_cons_0061_serbian_monarchy_VOJVODA = { # "Vo飗ode"
940
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
941
+ }
942
+ frloc_ruler_masc_cons_0061_serbian_monarchy_KRALJ = { # "Kralj"
943
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
944
+ }
945
+ frloc_ruler_masc_cons_0061_serbian_monarchy_CAR = { # "Tsar"
946
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
947
+ }
948
+ frloc_ruler_fem_cons_0061_serbian_monarchy_VOJVODKINJA = { # "Vo飗odine"
949
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
950
+ }
951
+ frloc_ruler_fem_cons_0061_serbian_monarchy_KRALJICA = { # "Kraljitsa"
952
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
953
+ }
954
+ frloc_ruler_fem_cons_0061_serbian_monarchy_CARICA = { # "Tsarine"
955
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
956
+ }
957
+ frloc_ruler_masc_cons_0062_byzantine_monarchy_DESPOT = { # "Despote"
958
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
959
+ }
960
+ frloc_ruler_masc_vow_0062_byzantine_monarchy_AUTOKRATOR = { # "Autocrate"
961
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
962
+ }
963
+ frloc_ruler_masc_cons_0062_byzantine_monarchy_BASILEUS = { # "Basileus"
964
+ AND = { government_rank = 3 government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
965
+ }
966
+ frloc_ruler_fem_cons_0062_byzantine_monarchy_DESPOTISSA = { # "Despote"
967
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
968
+ }
969
+ frloc_ruler_fem_vow_0062_byzantine_monarchy_AUTOKRATEIRA = { # "Autocrate"
970
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
971
+ }
972
+ frloc_ruler_fem_cons_0062_byzantine_monarchy_BASILISSA = { # "Basilissa"
973
+ AND = { government_rank = 3 government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
974
+ }
975
+ frloc_ruler_masc_cons_0063_greek_monarchy_DUKE = { # "Duc"
976
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
977
+ }
978
+ frloc_ruler_masc_cons_0063_greek_monarchy_KING = { # "Roi"
979
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
980
+ }
981
+ frloc_ruler_masc_vow_0063_greek_monarchy_EMPEROR = { # "Empereur"
982
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
983
+ }
984
+ frloc_ruler_fem_cons_0063_greek_monarchy_DUCHESS = { # "Duchesse"
985
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
986
+ }
987
+ frloc_ruler_fem_cons_0063_greek_monarchy_QUEEN = { # "Reine"
988
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
989
+ }
990
+ frloc_ruler_fem_vow_0063_greek_monarchy_EMPRESS = { # "Imp閞atrice"
991
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
992
+ }
993
+ frloc_ruler_masc_vow_0064_arakanese_monarchy_EMIR = { # "蒻ir"
994
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ARK }
995
+ }
996
+ frloc_ruler_masc_cons_0064_arakanese_monarchy_SULTAN = { # "Sultan"
997
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ARK }
998
+ }
999
+ frloc_ruler_masc_cons_0064_arakanese_monarchy_GREAT_SULTAN = { # "Grand sultan"
1000
+ AND = { government_rank = 3 government = monarchy tag = ARK }
1001
+ }
1002
+ frloc_ruler_fem_vow_0064_arakanese_monarchy_EMIRA = { # "蒻ira"
1003
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ARK }
1004
+ }
1005
+ frloc_ruler_fem_cons_0064_arakanese_monarchy_SULTANA = { # "Sultane"
1006
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ARK }
1007
+ }
1008
+ frloc_ruler_fem_cons_0064_arakanese_monarchy_GREAT_SULTANA = { # "Grande sultane"
1009
+ AND = { government_rank = 3 government = monarchy tag = ARK }
1010
+ }
1011
+ frloc_ruler_masc_cons_0065_pangasinan_monarchy_DATU = { # "Datu"
1012
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PGS religion_group = eastern }
1013
+ }
1014
+ frloc_ruler_masc_cons_0065_pangasinan_monarchy_WANG = { # "Wang"
1015
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
1016
+ }
1017
+ frloc_ruler_masc_vow_0065_pangasinan_monarchy_EMPEROR = { # "Empereur"
1018
+ AND = { government_rank = 3 government = monarchy tag = PGS religion_group = eastern }
1019
+ }
1020
+ frloc_ruler_fem_cons_0065_pangasinan_monarchy_DATU = { # "Datu"
1021
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PGS religion_group = eastern }
1022
+ }
1023
+ frloc_ruler_fem_cons_0065_pangasinan_monarchy_WANG = { # "Wang"
1024
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
1025
+ }
1026
+ frloc_ruler_fem_vow_0065_pangasinan_monarchy_EMPRESS = { # "Imp閞atrice"
1027
+ AND = { government_rank = 3 government = monarchy tag = PGS religion_group = eastern }
1028
+ }
1029
+ frloc_ruler_masc_cons_0066_albanian_monarchy_PRINCE = { # "Prince"
1030
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ALB }
1031
+ }
1032
+ frloc_ruler_masc_cons_0066_albanian_monarchy_MBRET = { # "Mbret"
1033
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ALB }
1034
+ }
1035
+ frloc_ruler_masc_vow_0066_albanian_monarchy_EMPEROR = { # "Empereur"
1036
+ AND = { government_rank = 3 government = monarchy tag = ALB }
1037
+ }
1038
+ frloc_ruler_fem_cons_0066_albanian_monarchy_PRINCESS = { # "Princesse"
1039
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ALB }
1040
+ }
1041
+ frloc_ruler_fem_cons_0066_albanian_monarchy_QUEEN = { # "Reine"
1042
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ALB }
1043
+ }
1044
+ frloc_ruler_fem_vow_0066_albanian_monarchy_EMPRESS = { # "Imp閞atrice"
1045
+ AND = { government_rank = 3 government = monarchy tag = ALB }
1046
+ }
1047
+ frloc_ruler_masc_cons_0067_qing_monarchy_BEILE = { # "Beile"
1048
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = QNG }
1049
+ }
1050
+ frloc_ruler_masc_cons_0067_qing_monarchy_JUNWANG = { # "Junwang"
1051
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = QNG }
1052
+ }
1053
+ frloc_ruler_masc_vow_0067_qing_monarchy_EMPEROR = { # "Empereur"
1054
+ AND = { government_rank = 3 government = monarchy tag = QNG }
1055
+ }
1056
+ frloc_ruler_fem_cons_0067_qing_monarchy_GEGE = { # "Gege"
1057
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = QNG }
1058
+ }
1059
+ frloc_ruler_fem_cons_0067_qing_monarchy_JUNWANG = { # "Junwang"
1060
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = QNG }
1061
+ }
1062
+ frloc_ruler_fem_vow_0067_qing_monarchy_EMPRESS = { # "Imp閞atrice"
1063
+ AND = { government_rank = 3 government = monarchy tag = QNG }
1064
+ }
1065
+ frloc_ruler_masc_cons_0068_egyptian_monarchy_KHEDIVE = { # "Kh閐ive"
1066
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1067
+ }
1068
+ frloc_ruler_masc_cons_0068_egyptian_monarchy_SULTAN = { # "Sultan"
1069
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1070
+ }
1071
+ frloc_ruler_masc_cons_0068_egyptian_monarchy_GREAT_SULTAN = { # "Grand sultan"
1072
+ AND = { government_rank = 3 OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1073
+ }
1074
+ frloc_ruler_fem_cons_0068_egyptian_monarchy_KHEDIVE = { # "Kh閐ive"
1075
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1076
+ }
1077
+ frloc_ruler_fem_cons_0068_egyptian_monarchy_SULTANA = { # "Sultane"
1078
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1079
+ }
1080
+ frloc_ruler_fem_cons_0068_egyptian_monarchy_GREAT_SULTANA = { # "Grande sultane"
1081
+ AND = { government_rank = 3 OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
1082
+ }
1083
+ frloc_ruler_masc_vow_0069_scanian_peasant_republic_OLDERMAND = { # "Oldermand"
1084
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = peasants_republic primary_culture = scanian }
1085
+ }
1086
+ frloc_ruler_masc_cons_0069_scanian_peasant_republic_STORBONDE = { # "Storbonde"
1087
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = peasants_republic primary_culture = scanian }
1088
+ }
1089
+ frloc_ruler_masc_cons_0069_scanian_peasant_republic_LANDSBONDE = { # "Landsbonde"
1090
+ AND = { government_rank = 3 has_reform = peasants_republic primary_culture = scanian }
1091
+ }
1092
+ frloc_ruler_fem_vow_0069_scanian_peasant_republic_OLDERMAND_fem = { # "Olderkvinde"
1093
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = peasants_republic primary_culture = scanian }
1094
+ }
1095
+ frloc_ruler_fem_cons_0069_scanian_peasant_republic_STORBONDE_fem = { # "Storbonde"
1096
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = peasants_republic primary_culture = scanian }
1097
+ }
1098
+ frloc_ruler_fem_cons_0069_scanian_peasant_republic_LANDSBONDE_fem = { # "Landsbonde"
1099
+ AND = { government_rank = 3 has_reform = peasants_republic primary_culture = scanian }
1100
+ }
1101
+ frloc_ruler_masc_cons_0070_pagan_egyptian_monarchy_NOMARCH = { # "Nomarque"
1102
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1103
+ }
1104
+ frloc_ruler_masc_cons_0070_pagan_egyptian_monarchy_PHARAOH = { # "Pharaon"
1105
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1106
+ }
1107
+ frloc_ruler_masc_cons_0070_pagan_egyptian_monarchy_GREAT_PHARAOH = { # "Grand pharaon"
1108
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1109
+ }
1110
+ frloc_ruler_fem_cons_0070_pagan_egyptian_monarchy_NOMARCH = { # "Nomarque"
1111
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1112
+ }
1113
+ frloc_ruler_fem_cons_0070_pagan_egyptian_monarchy_PHARAOH_fem = { # "Pharaonne"
1114
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1115
+ }
1116
+ frloc_ruler_fem_cons_0070_pagan_egyptian_monarchy_GREAT_PHARAOH_fem = { # "Grande pharaonne"
1117
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
1118
+ }
1119
+ frloc_ruler_masc_cons_0071_pagan_greek_monarchy_TYRANT = { # "Tyran"
1120
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1121
+ }
1122
+ frloc_ruler_masc_cons_0071_pagan_greek_monarchy_BASILEUS = { # "Basileus"
1123
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1124
+ }
1125
+ frloc_ruler_masc_vow_0071_pagan_greek_monarchy_HEGEMON = { # "H間閙on"
1126
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1127
+ }
1128
+ frloc_ruler_fem_cons_0071_pagan_greek_monarchy_TYRANT_fem = { # "Tyranne"
1129
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1130
+ }
1131
+ frloc_ruler_fem_cons_0071_pagan_greek_monarchy_BASILISSA = { # "Basilissa"
1132
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1133
+ }
1134
+ frloc_ruler_fem_vow_0071_pagan_greek_monarchy_HEGEMON_fem = { # "H間閙on"
1135
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
1136
+ }
1137
+ frloc_ruler_masc_cons_0072_pagan_roman_monarchy_CHIEF = { # "Chef"
1138
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1139
+ }
1140
+ frloc_ruler_masc_cons_0072_pagan_roman_monarchy_REX = { # "Rex"
1141
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1142
+ }
1143
+ frloc_ruler_masc_vow_0072_pagan_roman_monarchy_IMPERATOR = { # "Imperator"
1144
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1145
+ }
1146
+ frloc_ruler_fem_cons_0072_pagan_roman_monarchy_CHIEFTESS = { # "Cheffe"
1147
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1148
+ }
1149
+ frloc_ruler_fem_cons_0072_pagan_roman_monarchy_REGINA = { # "Regina"
1150
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1151
+ }
1152
+ frloc_ruler_fem_vow_0072_pagan_roman_monarchy_IMPERATRIX = { # "Imperatrix"
1153
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1154
+ }
1155
+ frloc_ruler_masc_cons_0072b_pagan_roman_republic_CONSUL = { # "Consul"
1156
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1157
+ }
1158
+ frloc_ruler_masc_cons_0072b_pagan_roman_republic_GRAND_CONSUL = { # "Grand consul"
1159
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1160
+ }
1161
+ frloc_ruler_masc_cons_0072b_pagan_roman_republic_GREAT_CONSUL = { # "Consul supr阭e"
1162
+ AND = { government_rank = 3 government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1163
+ }
1164
+ frloc_ruler_fem_cons_0072b_pagan_roman_republic_CONSULESS = { # "Consule"
1165
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1166
+ }
1167
+ frloc_ruler_fem_cons_0072b_pagan_roman_republic_GRAND_CONSULESS = { # "Grande consule"
1168
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1169
+ }
1170
+ frloc_ruler_fem_cons_0072b_pagan_roman_republic_GREAT_CONSULESS = { # "Consule supr阭e"
1171
+ AND = { government_rank = 3 government = republic OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
1172
+ }
1173
+ frloc_ruler_masc_cons_0073_jurchen_monarchy_BEILE = { # "Beile"
1174
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde primary_culture = manchu }
1175
+ }
1176
+ frloc_ruler_masc_cons_0073_jurchen_monarchy_KHAN = { # "Kh鈔"
1177
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
1178
+ }
1179
+ frloc_ruler_masc_cons_0073_jurchen_monarchy_KHAGAN = { # "Khagan"
1180
+ AND = { government_rank = 3 has_reform = steppe_horde primary_culture = manchu }
1181
+ }
1182
+ frloc_ruler_fem_cons_0073_jurchen_monarchy_GEGE = { # "Gege"
1183
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde primary_culture = manchu }
1184
+ }
1185
+ frloc_ruler_fem_cons_0073_jurchen_monarchy_KHATUN = { # "Khatoun"
1186
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
1187
+ }
1188
+ frloc_ruler_fem_cons_0073_jurchen_monarchy_GREAT_KHATUN = { # "Grande khatoun"
1189
+ AND = { government_rank = 3 has_reform = steppe_horde primary_culture = manchu }
1190
+ }
1191
+ frloc_ruler_masc_cons_0074_romanian_monarchy_VOIVODE = { # "Vo飗ode"
1192
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = romanian }
1193
+ }
1194
+ frloc_ruler_masc_cons_0074_romanian_monarchy_KRALJ = { # "Kralj"
1195
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = romanian }
1196
+ }
1197
+ frloc_ruler_masc_cons_0074_romanian_monarchy_CAR = { # "Tsar"
1198
+ AND = { government_rank = 3 government = monarchy primary_culture = romanian }
1199
+ }
1200
+ frloc_ruler_fem_cons_0074_romanian_monarchy_VOJVODKINJA = { # "Vo飗odine"
1201
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = romanian }
1202
+ }
1203
+ frloc_ruler_fem_cons_0074_romanian_monarchy_KRALJICA = { # "Kraljitsa"
1204
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = romanian }
1205
+ }
1206
+ frloc_ruler_fem_cons_0074_romanian_monarchy_CARICA = { # "Tsarine"
1207
+ AND = { government_rank = 3 government = monarchy primary_culture = romanian }
1208
+ }
1209
+ frloc_ruler_masc_cons_0075_hyderabad_state_monarchy_NAWAB = { # "Nawab"
1210
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
1211
+ }
1212
+ frloc_ruler_masc_cons_0075_hyderabad_state_monarchy_NIZAM = { # "Niz鈓"
1213
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
1214
+ }
1215
+ frloc_ruler_masc_cons_0075_hyderabad_state_monarchy_PADISHAH = { # "P鈊ishah"
1216
+ AND = { government_rank = 3 government = monarchy tag = DEC }
1217
+ }
1218
+ frloc_ruler_fem_cons_0075_hyderabad_state_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
1219
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
1220
+ }
1221
+ frloc_ruler_fem_cons_0075_hyderabad_state_monarchy_NIZAM_BEGUM = { # "Niz鈓 beg黰"
1222
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
1223
+ }
1224
+ frloc_ruler_fem_cons_0075_hyderabad_state_monarchy_PADISHAH = { # "P鈊ishah"
1225
+ AND = { government_rank = 3 government = monarchy tag = DEC }
1226
+ }
1227
+ frloc_ruler_masc_cons_0076_muslim_indian_monarchy_NAWAB = { # "Nawab"
1228
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1229
+ }
1230
+ frloc_ruler_masc_cons_0076_muslim_indian_monarchy_SULTAN = { # "Sultan"
1231
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1232
+ }
1233
+ frloc_ruler_masc_cons_0076_muslim_indian_monarchy_PADISHAH = { # "P鈊ishah"
1234
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1235
+ }
1236
+ frloc_ruler_fem_cons_0076_muslim_indian_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
1237
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1238
+ }
1239
+ frloc_ruler_fem_cons_0076_muslim_indian_monarchy_SULTANA = { # "Sultane"
1240
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1241
+ }
1242
+ frloc_ruler_fem_cons_0076_muslim_indian_monarchy_PADISHAH = { # "P鈊ishah"
1243
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
1244
+ }
1245
+ frloc_ruler_masc_cons_0077_bharat_monarchy_RAJA = { # "R鈐a"
1246
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BHA }
1247
+ }
1248
+ frloc_ruler_masc_cons_0077_bharat_monarchy_MAHARAJA = { # "Mah鈘鈐a"
1249
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BHA }
1250
+ }
1251
+ frloc_ruler_masc_cons_0077_bharat_monarchy_CHHATRAPATI = { # "Chhatrapati"
1252
+ AND = { government_rank = 3 government = monarchy tag = BHA }
1253
+ }
1254
+ frloc_ruler_fem_cons_0077_bharat_monarchy_RANI = { # "R鈔i"
1255
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BHA }
1256
+ }
1257
+ frloc_ruler_fem_cons_0077_bharat_monarchy_MAHARANI = { # "Mah鈘鈔?
1258
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BHA }
1259
+ }
1260
+ frloc_ruler_fem_cons_0077_bharat_monarchy_CHHATRAPATI = { # "Chhatrapati"
1261
+ AND = { government_rank = 3 government = monarchy tag = BHA }
1262
+ }
1263
+ frloc_ruler_masc_cons_0078_hindu_rajput_monarchy_RANA = { # "R鈔?
1264
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rajput religion = hinduism }
1265
+ }
1266
+ frloc_ruler_masc_cons_0078_hindu_rajput_monarchy_MAHARANA = { # "Mah鈘鈔?
1267
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
1268
+ }
1269
+ frloc_ruler_masc_cons_0078_hindu_rajput_monarchy_CHHATRAPATI = { # "Chhatrapati"
1270
+ AND = { government_rank = 3 government = monarchy primary_culture = rajput religion = hinduism }
1271
+ }
1272
+ frloc_ruler_fem_cons_0078_hindu_rajput_monarchy_RANI = { # "R鈔i"
1273
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rajput religion = hinduism }
1274
+ }
1275
+ frloc_ruler_fem_cons_0078_hindu_rajput_monarchy_MAHARANI = { # "Mah鈘鈔?
1276
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
1277
+ }
1278
+ frloc_ruler_fem_cons_0078_hindu_rajput_monarchy_CHHATRAPATI = { # "Chhatrapati"
1279
+ AND = { government_rank = 3 government = monarchy primary_culture = rajput religion = hinduism }
1280
+ }
1281
+ frloc_ruler_masc_cons_0079_maratha_peshwas_RAJA = { # "R鈐a"
1282
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1283
+ }
1284
+ frloc_ruler_masc_cons_0079_maratha_peshwas_MAHARAJA = { # "Mah鈘鈐a"
1285
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1286
+ }
1287
+ frloc_ruler_masc_cons_0079_maratha_peshwas_PESHWA = { # "Peshw?
1288
+ AND = { government_rank = 3 OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1289
+ }
1290
+ frloc_ruler_fem_cons_0079_maratha_peshwas_RANI = { # "R鈔i"
1291
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1292
+ }
1293
+ frloc_ruler_fem_cons_0079_maratha_peshwas_MAHARANI = { # "Mah鈘鈔?
1294
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1295
+ }
1296
+ frloc_ruler_fem_cons_0079_maratha_peshwas_PESHWA = { # "Peshw?
1297
+ AND = { government_rank = 3 OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
1298
+ }
1299
+ frloc_ruler_masc_cons_0080_hindu_maratha_monarchy_RAJA = { # "R鈐a"
1300
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = marathi religion = hinduism }
1301
+ }
1302
+ frloc_ruler_masc_cons_0080_hindu_maratha_monarchy_MAHARAJA = { # "Mah鈘鈐a"
1303
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
1304
+ }
1305
+ frloc_ruler_masc_cons_0080_hindu_maratha_monarchy_CHHATRAPATI = { # "Chhatrapati"
1306
+ AND = { government_rank = 3 government = monarchy primary_culture = marathi religion = hinduism }
1307
+ }
1308
+ frloc_ruler_fem_cons_0080_hindu_maratha_monarchy_RANI = { # "R鈔i"
1309
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = marathi religion = hinduism }
1310
+ }
1311
+ frloc_ruler_fem_cons_0080_hindu_maratha_monarchy_MAHARANI = { # "Mah鈘鈔?
1312
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
1313
+ }
1314
+ frloc_ruler_fem_cons_0080_hindu_maratha_monarchy_CHHATRAPATI = { # "Chhatrapati"
1315
+ AND = { government_rank = 3 government = monarchy primary_culture = marathi religion = hinduism }
1316
+ }
1317
+ frloc_ruler_masc_cons_0081_kaffa_monarchy_TATKISHO = { # "Tatkisho"
1318
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = KAF }
1319
+ }
1320
+ frloc_ruler_masc_cons_0081_kaffa_monarchy_TATO = { # "Tato"
1321
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = KAF }
1322
+ }
1323
+ frloc_ruler_masc_vow_0081_kaffa_monarchy_ATIO = { # "Atio"
1324
+ AND = { government_rank = 3 government = monarchy tag = KAF }
1325
+ }
1326
+ frloc_ruler_fem_cons_0081_kaffa_monarchy_TATKISHO_FEM = { # "Tatkisho"
1327
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = KAF }
1328
+ }
1329
+ frloc_ruler_fem_cons_0081_kaffa_monarchy_TATO_FEM = { # "Tato"
1330
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = KAF }
1331
+ }
1332
+ frloc_ruler_fem_vow_0081_kaffa_monarchy_ATIO_FEM = { # "Atio"
1333
+ AND = { government_rank = 3 government = monarchy tag = KAF }
1334
+ }
1335
+ frloc_ruler_masc_cons_0082_ethiopian_monarchies_RAS_title = { # "R鈙"
1336
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1337
+ }
1338
+ frloc_ruler_masc_cons_0082_ethiopian_monarchies_NEGUS = { # "N間us"
1339
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1340
+ }
1341
+ frloc_ruler_masc_cons_0082_ethiopian_monarchies_NEGUSA_NEGAST = { # "N間usa n間ast"
1342
+ AND = { government_rank = 3 government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1343
+ }
1344
+ frloc_ruler_fem_cons_0082_ethiopian_monarchies_LE_ELT = { # "Le'elt"
1345
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1346
+ }
1347
+ frloc_ruler_fem_cons_0082_ethiopian_monarchies_NIGIST = { # "Nigist"
1348
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1349
+ }
1350
+ frloc_ruler_fem_cons_0082_ethiopian_monarchies_NIGISTE_NIGIST = { # "Nigiste nigist"
1351
+ AND = { government_rank = 3 government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
1352
+ }
1353
+ frloc_ruler_masc_cons_0083_nkore_monarchy_PRINCE = { # "Prince"
1354
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = NKO }
1355
+ }
1356
+ frloc_ruler_masc_vow_0083_nkore_monarchy_MUGABE = { # "Omugabe"
1357
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = NKO }
1358
+ }
1359
+ frloc_ruler_masc_cons_0083_nkore_monarchy_GREAT_MUGABE = { # "Grand omugabe"
1360
+ AND = { government_rank = 3 government = monarchy tag = NKO }
1361
+ }
1362
+ frloc_ruler_fem_cons_0083_nkore_monarchy_PRINCESS = { # "Princesse"
1363
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = NKO }
1364
+ }
1365
+ frloc_ruler_fem_vow_0083_nkore_monarchy_MUGO = { # "Omugo"
1366
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = NKO }
1367
+ }
1368
+ frloc_ruler_fem_cons_0083_nkore_monarchy_GREAT_MUGO = { # "Grande omugo"
1369
+ AND = { government_rank = 3 government = monarchy tag = NKO }
1370
+ }
1371
+ frloc_ruler_masc_cons_0084_bunyoro_monarchy_PRINCE = { # "Prince"
1372
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BNY }
1373
+ }
1374
+ frloc_ruler_masc_vow_0084_bunyoro_monarchy_OMUKAMA = { # "Omukama"
1375
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BNY }
1376
+ }
1377
+ frloc_ruler_masc_cons_0084_bunyoro_monarchy_GREAT_OMUKAMA = { # "Grand omukama"
1378
+ AND = { government_rank = 3 government = monarchy tag = BNY }
1379
+ }
1380
+ frloc_ruler_fem_cons_0084_bunyoro_monarchy_PRINCESS = { # "Princesse"
1381
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BNY }
1382
+ }
1383
+ frloc_ruler_fem_vow_0084_bunyoro_monarchy_MUGO = { # "Omugo"
1384
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BNY }
1385
+ }
1386
+ frloc_ruler_fem_cons_0084_bunyoro_monarchy_GREAT_MUGO = { # "Grande omugo"
1387
+ AND = { government_rank = 3 government = monarchy tag = BNY }
1388
+ }
1389
+ frloc_ruler_masc_cons_0085_lunda_monarchy_BALOPWE = { # "Balopwe"
1390
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1391
+ }
1392
+ frloc_ruler_masc_cons_0085_lunda_monarchy_MULOPWE = { # "Mulopwe"
1393
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1394
+ }
1395
+ frloc_ruler_masc_cons_0085_lunda_monarchy_GREAT_MULOPWE = { # "Grand mulopwe"
1396
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1397
+ }
1398
+ frloc_ruler_fem_cons_0085_lunda_monarchy_BALOPWE_fem = { # "Balopwe"
1399
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1400
+ }
1401
+ frloc_ruler_fem_cons_0085_lunda_monarchy_MULOPWE_fem = { # "Mulopwe"
1402
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1403
+ }
1404
+ frloc_ruler_fem_cons_0085_lunda_monarchy_GREAT_MULOPWE_fem = { # "Grande mulopwe"
1405
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
1406
+ }
1407
+ frloc_ruler_masc_cons_0086_mutapa_monarchy_PRINCE = { # "Prince"
1408
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ZIM }
1409
+ }
1410
+ frloc_ruler_masc_cons_0086_mutapa_monarchy_MWENEMUTAPA = { # "Mwene mutapa"
1411
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ZIM }
1412
+ }
1413
+ frloc_ruler_masc_cons_0086_mutapa_monarchy_GREAT_MWENEMUTAPA = { # "Grand mwene mutapa"
1414
+ AND = { government_rank = 3 government = monarchy tag = ZIM }
1415
+ }
1416
+ frloc_ruler_fem_cons_0086_mutapa_monarchy_PRINCESS = { # "Princesse"
1417
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ZIM }
1418
+ }
1419
+ frloc_ruler_fem_cons_0086_mutapa_monarchy_MWENEMUTAPA_fem = { # "Mwene mutapa"
1420
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ZIM }
1421
+ }
1422
+ frloc_ruler_fem_cons_0086_mutapa_monarchy_GREAT_MWENEMUTAPA_fem = { # "Grande mwene mutapa"
1423
+ AND = { government_rank = 3 government = monarchy tag = ZIM }
1424
+ }
1425
+ frloc_ruler_masc_cons_0087_torwa_monarchy_MAMBO = { # "Mambo"
1426
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = RZW }
1427
+ }
1428
+ frloc_ruler_masc_cons_0087_torwa_monarchy_GRAND_MAMBO = { # "Grand mambo"
1429
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = RZW }
1430
+ }
1431
+ frloc_ruler_masc_cons_0087_torwa_monarchy_GREAT_MAMBO = { # "Mambo supr阭e"
1432
+ AND = { government_rank = 3 government = monarchy tag = RZW }
1433
+ }
1434
+ frloc_ruler_fem_cons_0087_torwa_monarchy_MAMBO = { # "Mambo"
1435
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = RZW }
1436
+ }
1437
+ frloc_ruler_fem_cons_0087_torwa_monarchy_GRAND_MAMBO_fem = { # "Grande mambo"
1438
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = RZW }
1439
+ }
1440
+ frloc_ruler_fem_cons_0087_torwa_monarchy_GREAT_MAMBO_fem = { # "Mambo supr阭e"
1441
+ AND = { government_rank = 3 government = monarchy tag = RZW }
1442
+ }
1443
+ frloc_ruler_masc_cons_0088_rwanda_burundi_monarchy_BAKUNGU = { # "Bakungu"
1444
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rwandan }
1445
+ }
1446
+ frloc_ruler_masc_cons_0088_rwanda_burundi_monarchy_MWAMI = { # "Mwami"
1447
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rwandan }
1448
+ }
1449
+ frloc_ruler_masc_vow_0088_rwanda_burundi_monarchy_EMPEROR = { # "Empereur"
1450
+ AND = { government_rank = 3 government = monarchy primary_culture = rwandan }
1451
+ }
1452
+ frloc_ruler_fem_cons_0088_rwanda_burundi_monarchy_PRINCESS = { # "Princesse"
1453
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rwandan }
1454
+ }
1455
+ frloc_ruler_fem_vow_0088_rwanda_burundi_monarchy_UMUGABEKAZI = { # "Umwamikazi"
1456
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rwandan }
1457
+ }
1458
+ frloc_ruler_fem_vow_0088_rwanda_burundi_monarchy_EMPRESS = { # "Imp閞atrice"
1459
+ AND = { government_rank = 3 government = monarchy primary_culture = rwandan }
1460
+ }
1461
+ frloc_ruler_masc_cons_0089_ganda_monarchy_BAKUNGU = { # "Bakungu"
1462
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = ganda }
1463
+ }
1464
+ frloc_ruler_masc_cons_0089_ganda_monarchy_KABAKA = { # "Kabaka"
1465
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = ganda }
1466
+ }
1467
+ frloc_ruler_masc_cons_0089_ganda_monarchy_GREAT_KABAKA = { # "Grand kabaka"
1468
+ AND = { government_rank = 3 government = monarchy primary_culture = ganda }
1469
+ }
1470
+ frloc_ruler_fem_cons_0089_ganda_monarchy_PRINCESS = { # "Princesse"
1471
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = ganda }
1472
+ }
1473
+ frloc_ruler_fem_cons_0089_ganda_monarchy_NNABAGEREKA = { # "Nnabagereka"
1474
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = ganda }
1475
+ }
1476
+ frloc_ruler_fem_cons_0089_ganda_monarchy_GREAT_NNABAGEREKA = { # "Grande nnabagereka"
1477
+ AND = { government_rank = 3 government = monarchy primary_culture = ganda }
1478
+ }
1479
+ frloc_ruler_masc_vow_0090_antemoro_monarchy_ANDRIANONI = { # "Andrianoni"
1480
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ANT }
1481
+ }
1482
+ frloc_ruler_masc_cons_0090_antemoro_monarchy_GRAND_ANDRIANONI = { # "Grand andrianoni"
1483
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ANT }
1484
+ }
1485
+ frloc_ruler_masc_vow_0090_antemoro_monarchy_GREAT_ANDRIANONI = { # "Andrianoni supr阭e"
1486
+ AND = { government_rank = 3 government = monarchy tag = ANT }
1487
+ }
1488
+ frloc_ruler_fem_cons_0090_antemoro_monarchy_PRINCESS = { # "Princesse"
1489
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ANT }
1490
+ }
1491
+ frloc_ruler_fem_cons_0090_antemoro_monarchy_QUEEN = { # "Reine"
1492
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ANT }
1493
+ }
1494
+ frloc_ruler_fem_vow_0090_antemoro_monarchy_EMPRESS = { # "Imp閞atrice"
1495
+ AND = { government_rank = 3 government = monarchy tag = ANT }
1496
+ }
1497
+ frloc_ruler_masc_cons_0091_betsimisaraka_monarchy_FILOHANY = { # "Filohany"
1498
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BTS }
1499
+ }
1500
+ frloc_ruler_masc_cons_0091_betsimisaraka_monarchy_MPANJAKE_BE = { # "Mpanjake-b?
1501
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BTS }
1502
+ }
1503
+ frloc_ruler_masc_vow_0091_betsimisaraka_monarchy_EMPEROR = { # "Empereur"
1504
+ AND = { government_rank = 3 government = monarchy tag = BTS }
1505
+ }
1506
+ frloc_ruler_fem_cons_0091_betsimisaraka_monarchy_PRINCESS = { # "Princesse"
1507
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BTS }
1508
+ }
1509
+ frloc_ruler_fem_cons_0091_betsimisaraka_monarchy_QUEEN = { # "Reine"
1510
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BTS }
1511
+ }
1512
+ frloc_ruler_fem_vow_0091_betsimisaraka_monarchy_EMPRESS = { # "Imp閞atrice"
1513
+ AND = { government_rank = 3 government = monarchy tag = BTS }
1514
+ }
1515
+ frloc_ruler_masc_cons_0092_filipino_rajanate_DATU = { # "Datu"
1516
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1517
+ }
1518
+ frloc_ruler_masc_cons_0092_filipino_rajanate_RAJA = { # "R鈐a"
1519
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1520
+ }
1521
+ frloc_ruler_masc_cons_0092_filipino_rajanate_MAHARAJA = { # "Mah鈘鈐a"
1522
+ AND = { government_rank = 3 government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1523
+ }
1524
+ frloc_ruler_fem_cons_0092_filipino_rajanate_DATU = { # "Datu"
1525
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1526
+ }
1527
+ frloc_ruler_fem_cons_0092_filipino_rajanate_RANI = { # "R鈔i"
1528
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1529
+ }
1530
+ frloc_ruler_fem_cons_0092_filipino_rajanate_MAHARANI = { # "Mah鈘鈔?
1531
+ AND = { government_rank = 3 government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
1532
+ }
1533
+ frloc_ruler_masc_cons_0093_shan_monarchy_SAOPHA = { # "Saopha"
1534
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy primary_culture = shan }
1535
+ }
1536
+ frloc_ruler_masc_vow_0093_shan_monarchy_EMPEROR = { # "Empereur"
1537
+ AND = { government_rank = 3 government = monarchy primary_culture = shan }
1538
+ }
1539
+ frloc_ruler_fem_cons_0093_shan_monarchy_SAOPHA = { # "Saopha"
1540
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy primary_culture = shan }
1541
+ }
1542
+ frloc_ruler_fem_vow_0093_shan_monarchy_EMPRESS = { # "Imp閞atrice"
1543
+ AND = { government_rank = 3 government = monarchy primary_culture = shan }
1544
+ }
1545
+ frloc_ruler_masc_cons_0094_burman_monarchy_PRINCE = { # "Prince"
1546
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = burman }
1547
+ }
1548
+ frloc_ruler_masc_cons_0094_burman_monarchy_KING = { # "Roi"
1549
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = burman }
1550
+ }
1551
+ frloc_ruler_masc_cons_0094_burman_monarchy_CHHATRAPATI = { # "Chhatrapati"
1552
+ AND = { government_rank = 3 government = monarchy culture_group = burman }
1553
+ }
1554
+ frloc_ruler_fem_cons_0094_burman_monarchy_PRINCESS = { # "Princesse"
1555
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = burman }
1556
+ }
1557
+ frloc_ruler_fem_cons_0094_burman_monarchy_QUEEN = { # "Reine"
1558
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = burman }
1559
+ }
1560
+ frloc_ruler_fem_cons_0094_burman_monarchy_CHHATRAPATI = { # "Chhatrapati"
1561
+ AND = { government_rank = 3 government = monarchy culture_group = burman }
1562
+ }
1563
+ frloc_ruler_masc_cons_0095_barangay_polity_DATU = { # "Datu"
1564
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1565
+ }
1566
+ frloc_ruler_masc_cons_0095_barangay_polity_LAKAN = { # "Lakan"
1567
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1568
+ }
1569
+ frloc_ruler_masc_cons_0095_barangay_polity_GREAT_LAKAN = { # "Lakan supr阭e"
1570
+ AND = { government_rank = 3 OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1571
+ }
1572
+ frloc_ruler_fem_cons_0095_barangay_polity_DATU = { # "Datu"
1573
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1574
+ }
1575
+ frloc_ruler_fem_cons_0095_barangay_polity_LAKAN = { # "Lakan"
1576
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1577
+ }
1578
+ frloc_ruler_fem_cons_0095_barangay_polity_GREAT_LAKAN_fem = { # "Lakan supr阭e"
1579
+ AND = { government_rank = 3 OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
1580
+ }
1581
+ frloc_ruler_masc_cons_0096_south_slavic_monarchy_VOIVODE = { # "Vo飗ode"
1582
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1583
+ }
1584
+ frloc_ruler_masc_cons_0096_south_slavic_monarchy_KRALJ = { # "Kralj"
1585
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1586
+ }
1587
+ frloc_ruler_masc_cons_0096_south_slavic_monarchy_CAR = { # "Tsar"
1588
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1589
+ }
1590
+ frloc_ruler_fem_cons_0096_south_slavic_monarchy_VOJVODKINJA = { # "Vo飗odine"
1591
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1592
+ }
1593
+ frloc_ruler_fem_cons_0096_south_slavic_monarchy_KRALJICA = { # "Kraljitsa"
1594
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1595
+ }
1596
+ frloc_ruler_fem_cons_0096_south_slavic_monarchy_CARICA = { # "Tsarine"
1597
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
1598
+ }
1599
+ frloc_ruler_masc_cons_0097_irish_peerage_monarchy_EARL = { # "Comte"
1600
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1601
+ }
1602
+ frloc_ruler_masc_cons_0097_irish_peerage_monarchy_HIGH_KING = { # "Haut roi"
1603
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1604
+ }
1605
+ frloc_ruler_masc_vow_0097_irish_peerage_monarchy_EMPEROR = { # "Empereur"
1606
+ AND = { government_rank = 3 government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1607
+ }
1608
+ frloc_ruler_fem_cons_0097_irish_peerage_monarchy_COUNTESS = { # "Comtesse"
1609
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1610
+ }
1611
+ frloc_ruler_fem_cons_0097_irish_peerage_monarchy_HIGH_QUEEN = { # "Haute reine"
1612
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1613
+ }
1614
+ frloc_ruler_fem_vow_0097_irish_peerage_monarchy_EMPRESS = { # "Imp閞atrice"
1615
+ AND = { government_rank = 3 government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
1616
+ }
1617
+ frloc_ruler_masc_cons_0098_irish_clan_monarchy_KING = { # "Roi"
1618
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish }
1619
+ }
1620
+ frloc_ruler_masc_cons_0098_irish_clan_monarchy_HIGH_KING = { # "Haut roi"
1621
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish }
1622
+ }
1623
+ frloc_ruler_masc_vow_0098_irish_clan_monarchy_EMPEROR = { # "Empereur"
1624
+ AND = { government_rank = 3 government = monarchy primary_culture = irish }
1625
+ }
1626
+ frloc_ruler_fem_cons_0098_irish_clan_monarchy_QUEEN = { # "Reine"
1627
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish }
1628
+ }
1629
+ frloc_ruler_fem_cons_0098_irish_clan_monarchy_HIGH_QUEEN = { # "Haute reine"
1630
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish }
1631
+ }
1632
+ frloc_ruler_fem_vow_0098_irish_clan_monarchy_EMPRESS = { # "Imp閞atrice"
1633
+ AND = { government_rank = 3 government = monarchy primary_culture = irish }
1634
+ }
1635
+ frloc_ruler_masc_cons_0099_hebridean_monarchy_LORD = { # "Seigneur"
1636
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = highland_scottish }
1637
+ }
1638
+ frloc_ruler_masc_cons_0099_hebridean_monarchy_KING = { # "Roi"
1639
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = highland_scottish }
1640
+ }
1641
+ frloc_ruler_masc_vow_0099_hebridean_monarchy_EMPEROR = { # "Empereur"
1642
+ AND = { government_rank = 3 government = monarchy primary_culture = highland_scottish }
1643
+ }
1644
+ frloc_ruler_fem_cons_0099_hebridean_monarchy_LADY = { # "Dame"
1645
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = highland_scottish }
1646
+ }
1647
+ frloc_ruler_fem_cons_0099_hebridean_monarchy_QUEEN = { # "Reine"
1648
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = highland_scottish }
1649
+ }
1650
+ frloc_ruler_fem_vow_0099_hebridean_monarchy_EMPRESS = { # "Imp閞atrice"
1651
+ AND = { government_rank = 3 government = monarchy primary_culture = highland_scottish }
1652
+ }
1653
+ frloc_ruler_masc_cons_0100_muscovite_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
1654
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
1655
+ }
1656
+ frloc_ruler_masc_cons_0100_muscovite_monarchy_TSAR = { # "Tsar"
1657
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
1658
+ }
1659
+ frloc_ruler_fem_cons_0100_muscovite_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
1660
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
1661
+ }
1662
+ frloc_ruler_fem_cons_0100_muscovite_monarchy_TSARITSA = { # "Tsarine"
1663
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
1664
+ }
1665
+ frloc_ruler_masc_cons_0101_russian_monarchy_KNIAZ = { # "Kn鑪e"
1666
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1667
+ }
1668
+ frloc_ruler_masc_cons_0101_russian_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
1669
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1670
+ }
1671
+ frloc_ruler_masc_cons_0101_russian_monarchy_TSAR = { # "Tsar"
1672
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1673
+ }
1674
+ frloc_ruler_fem_cons_0101_russian_monarchy_KNIAGINIA = { # "Kniaguinia"
1675
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1676
+ }
1677
+ frloc_ruler_fem_cons_0101_russian_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
1678
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1679
+ }
1680
+ frloc_ruler_fem_cons_0101_russian_monarchy_TSARITSA = { # "Tsarine"
1681
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
1682
+ }
1683
+ frloc_ruler_masc_cons_0102_russian_feudal_monarchy_KNIAZ = { # "Kn鑪e"
1684
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1685
+ }
1686
+ frloc_ruler_masc_cons_0102_russian_feudal_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
1687
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1688
+ }
1689
+ frloc_ruler_masc_vow_0102_russian_feudal_monarchy_EMPEROR = { # "Empereur"
1690
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1691
+ }
1692
+ frloc_ruler_fem_cons_0102_russian_feudal_monarchy_KNIAGINIA = { # "Kniaguinia"
1693
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1694
+ }
1695
+ frloc_ruler_fem_cons_0102_russian_feudal_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
1696
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1697
+ }
1698
+ frloc_ruler_fem_vow_0102_russian_feudal_monarchy_EMPRESS = { # "Imp閞atrice"
1699
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1700
+ }
1701
+ frloc_ruler_masc_cons_0103_inti_monarchy_KURAKA = { # "Kuraka"
1702
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = inti }
1703
+ }
1704
+ frloc_ruler_masc_vow_0103_inti_monarchy_APU = { # "Apu"
1705
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = inti }
1706
+ }
1707
+ frloc_ruler_masc_cons_0103_inti_monarchy_SAPA_INKA = { # "Sapa inka"
1708
+ AND = { government_rank = 3 government = monarchy religion = inti }
1709
+ }
1710
+ frloc_ruler_fem_cons_0103_inti_monarchy_KURAKA = { # "Kuraka"
1711
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = inti }
1712
+ }
1713
+ frloc_ruler_fem_vow_0103_inti_monarchy_APU = { # "Apu"
1714
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = inti }
1715
+ }
1716
+ frloc_ruler_fem_cons_0103_inti_monarchy_SAPA_INKA = { # "Sapa inka"
1717
+ AND = { government_rank = 3 government = monarchy religion = inti }
1718
+ }
1719
+ frloc_ruler_masc_vow_0104_mayan_monarchy_NACOM = { # "Ah nacom"
1720
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1721
+ }
1722
+ frloc_ruler_masc_cons_0104_mayan_monarchy_HALACH_UINIK = { # "Halach uinik"
1723
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1724
+ }
1725
+ frloc_ruler_masc_cons_0104_mayan_monarchy_K_UHUL_AJAW = { # "K'uhul ajaw"
1726
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1727
+ }
1728
+ frloc_ruler_fem_vow_0104_mayan_monarchy_NACOM = { # "Ah nacom"
1729
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1730
+ }
1731
+ frloc_ruler_fem_cons_0104_mayan_monarchy_HALACH_UINIK = { # "Halach uinik"
1732
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1733
+ }
1734
+ frloc_ruler_fem_cons_0104_mayan_monarchy_K_UHUL_AJAW = { # "K'uhul ajaw"
1735
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
1736
+ }
1737
+ frloc_ruler_masc_cons_0105_nahuatl_monarchy_CUAUHTLAHTOANI = { # "Cu鈛htlahto鈔i"
1738
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
1739
+ }
1740
+ frloc_ruler_masc_cons_0105_nahuatl_monarchy_TLATOANI = { # "Tlahto鈔i"
1741
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
1742
+ }
1743
+ frloc_ruler_masc_cons_0105_nahuatl_monarchy_HUEHUETLATOANI = { # "Hu阧u阾lato鈔i"
1744
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
1745
+ }
1746
+ frloc_ruler_fem_cons_0105_nahuatl_monarchy_CIHUATLAHTOANI = { # "Cihu鈚laht鈔i"
1747
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
1748
+ }
1749
+ frloc_ruler_masc_cons_0106_chinese_monarchy_PRINCE = { # "Prince"
1750
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = east_asian }
1751
+ }
1752
+ frloc_ruler_masc_cons_0106_chinese_monarchy_KING = { # "Roi"
1753
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = east_asian }
1754
+ }
1755
+ frloc_ruler_masc_vow_0106_chinese_monarchy_EMPEROR = { # "Empereur"
1756
+ AND = { government_rank = 3 government = monarchy culture_group = east_asian }
1757
+ }
1758
+ frloc_ruler_fem_cons_0106_chinese_monarchy_PRINCESS = { # "Princesse"
1759
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = east_asian }
1760
+ }
1761
+ frloc_ruler_fem_cons_0106_chinese_monarchy_QUEEN = { # "Reine"
1762
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = east_asian }
1763
+ }
1764
+ frloc_ruler_fem_vow_0106_chinese_monarchy_EMPRESS = { # "Imp閞atrice"
1765
+ AND = { government_rank = 3 government = monarchy culture_group = east_asian }
1766
+ }
1767
+ frloc_ruler_masc_cons_0107_hindu_monarchy_RAJA = { # "R鈐a"
1768
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = hinduism }
1769
+ }
1770
+ frloc_ruler_masc_cons_0107_hindu_monarchy_MAHARAJA = { # "Mah鈘鈐a"
1771
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = hinduism }
1772
+ }
1773
+ frloc_ruler_masc_cons_0107_hindu_monarchy_CHHATRAPATI = { # "Chhatrapati"
1774
+ AND = { government_rank = 3 government = monarchy religion = hinduism }
1775
+ }
1776
+ frloc_ruler_fem_cons_0107_hindu_monarchy_RANI = { # "R鈔i"
1777
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = hinduism }
1778
+ }
1779
+ frloc_ruler_fem_cons_0107_hindu_monarchy_MAHARANI = { # "Mah鈘鈔?
1780
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = hinduism }
1781
+ }
1782
+ frloc_ruler_fem_cons_0107_hindu_monarchy_CHHATRAPATI = { # "Chhatrapati"
1783
+ AND = { government_rank = 3 government = monarchy religion = hinduism }
1784
+ }
1785
+ frloc_ruler_masc_cons_0108_buddhist_monarchy_PRINCE = { # "Prince"
1786
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1787
+ }
1788
+ frloc_ruler_masc_cons_0108_buddhist_monarchy_KING = { # "Roi"
1789
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1790
+ }
1791
+ frloc_ruler_masc_vow_0108_buddhist_monarchy_EMPEROR = { # "Empereur"
1792
+ AND = { government_rank = 3 government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1793
+ }
1794
+ frloc_ruler_fem_cons_0108_buddhist_monarchy_PRINCESS = { # "Princesse"
1795
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1796
+ }
1797
+ frloc_ruler_fem_cons_0108_buddhist_monarchy_QUEEN = { # "Reine"
1798
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1799
+ }
1800
+ frloc_ruler_fem_vow_0108_buddhist_monarchy_EMPRESS = { # "Imp閞atrice"
1801
+ AND = { government_rank = 3 government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
1802
+ }
1803
+ frloc_ruler_masc_vow_0109_muslim_monarchy_EMIR = { # "蒻ir"
1804
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1805
+ }
1806
+ frloc_ruler_masc_cons_0109_muslim_monarchy_SULTAN = { # "Sultan"
1807
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1808
+ }
1809
+ frloc_ruler_masc_cons_0109_muslim_monarchy_GREAT_SULTAN = { # "Grand sultan"
1810
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1811
+ }
1812
+ frloc_ruler_fem_vow_0109_muslim_monarchy_EMIRA = { # "蒻ira"
1813
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1814
+ }
1815
+ frloc_ruler_fem_cons_0109_muslim_monarchy_SULTANA = { # "Sultane"
1816
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1817
+ }
1818
+ frloc_ruler_fem_cons_0109_muslim_monarchy_GREAT_SULTANA = { # "Grande sultane"
1819
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
1820
+ }
1821
+ frloc_ruler_masc_cons_0110_german_free_city_BURGMEISTER = { # "B黵germeister"
1822
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = free_city culture_group = germanic }
1823
+ }
1824
+ frloc_ruler_fem_cons_0110_german_free_city_BURGMEISTER_fem = { # "B黵germeisterin"
1825
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = free_city culture_group = germanic }
1826
+ }
1827
+ frloc_ruler_masc_cons_0111_gov_free_city_MAYOR = { # "Maire"
1828
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = free_city }
1829
+ }
1830
+ frloc_ruler_fem_cons_0111_gov_free_city_MAYORESS = { # "Mairesse"
1831
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = free_city }
1832
+ }
1833
+ frloc_ruler_masc_cons_0112_iberian_colonial_government_VICEROY = { # "Vice-roi"
1834
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } culture_group = iberian OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
1835
+ }
1836
+ frloc_ruler_fem_cons_0112_iberian_colonial_government_VICEREINE = { # "Vice-reine"
1837
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } culture_group = iberian OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
1838
+ }
1839
+ frloc_ruler_masc_cons_0113_dutch_colonial_government_DIRECTOR = { # "Directeur"
1840
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } primary_culture = dutch OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
1841
+ }
1842
+ frloc_ruler_fem_cons_0113_dutch_colonial_government_DIRECTORESS = { # "Directrice"
1843
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } primary_culture = dutch OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
1844
+ }
1845
+ frloc_ruler_masc_vow_0114_zaporozhian_republic_ATAMAN = { # "Ataman"
1846
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic has_reform = cossacks_reform }
1847
+ }
1848
+ frloc_ruler_masc_vow_0114_zaporozhian_republic_HETMAN = { # "Hetman"
1849
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic has_reform = cossacks_reform }
1850
+ }
1851
+ frloc_ruler_masc_cons_0114_zaporozhian_republic_GREAT_HETMAN = { # "Hetman"
1852
+ AND = { government_rank = 3 government = republic has_reform = cossacks_reform }
1853
+ }
1854
+ frloc_ruler_fem_vow_0114_zaporozhian_republic_ATAMAN_fem = { # "Atamane"
1855
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic has_reform = cossacks_reform }
1856
+ }
1857
+ frloc_ruler_fem_vow_0114_zaporozhian_republic_HETMAN_fem = { # "Hetmane"
1858
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic has_reform = cossacks_reform }
1859
+ }
1860
+ frloc_ruler_fem_cons_0114_zaporozhian_republic_GREAT_HETMAN_fem = { # "Grande hetmane"
1861
+ AND = { government_rank = 3 government = republic has_reform = cossacks_reform }
1862
+ }
1863
+ frloc_ruler_masc_cons_0115_ragusan_republic_RECTOR = { # "Recteur"
1864
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic tag = RAG }
1865
+ }
1866
+ frloc_ruler_masc_cons_0115_ragusan_republic_GRAND_RECTOR = { # "Grand recteur"
1867
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic tag = RAG }
1868
+ }
1869
+ frloc_ruler_masc_cons_0115_ragusan_republic_GREAT_RECTOR = { # "Recteur supr阭e"
1870
+ AND = { government_rank = 3 government = republic tag = RAG }
1871
+ }
1872
+ frloc_ruler_fem_cons_0115_ragusan_republic_RECTORA = { # "Rectrice"
1873
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic tag = RAG }
1874
+ }
1875
+ frloc_ruler_fem_cons_0115_ragusan_republic_GRAND_RECTORA = { # "Grande rectrice"
1876
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic tag = RAG }
1877
+ }
1878
+ frloc_ruler_fem_cons_0115_ragusan_republic_GREAT_RECTORA = { # "Rectrice supr阭e"
1879
+ AND = { government_rank = 3 government = republic tag = RAG }
1880
+ }
1881
+ frloc_ruler_masc_cons_0116_dutch_republic_GRAND_PENSIONARY = { # "Grand pensionnaire"
1882
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1883
+ }
1884
+ frloc_ruler_masc_cons_0116_dutch_republic_STADTHOLDER = { # "Stathouder"
1885
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1886
+ }
1887
+ frloc_ruler_masc_cons_0116_dutch_republic_GREAT_STADTHOLDER = { # "Grand stathouder"
1888
+ AND = { government_rank = 3 government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1889
+ }
1890
+ frloc_ruler_fem_cons_0116_dutch_republic_GRAND_PENSIONARY_fem = { # "Grande pensionnaire"
1891
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1892
+ }
1893
+ frloc_ruler_fem_cons_0116_dutch_republic_STADTHOLDERESS = { # "Stathouderesse"
1894
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1895
+ }
1896
+ frloc_ruler_fem_cons_0116_dutch_republic_GREAT_STADTHOLDERESS = { # "Grande stathouderesse"
1897
+ AND = { government_rank = 3 government = republic primary_culture = dutch NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = presidential_despot_reform } }
1898
+ }
1899
+ frloc_ruler_masc_cons_0117_russian_republic_POSADNIK = { # "Possadnik"
1900
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1901
+ }
1902
+ frloc_ruler_masc_cons_0117_russian_republic_GRAND_POSADNIK = { # "Grand possadnik"
1903
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1904
+ }
1905
+ frloc_ruler_masc_cons_0117_russian_republic_GREAT_POSADNIK = { # "Possadnik supr阭e"
1906
+ AND = { government_rank = 3 government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1907
+ }
1908
+ frloc_ruler_fem_cons_0117_russian_republic_POSADNITSA = { # "Possadnitsa"
1909
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1910
+ }
1911
+ frloc_ruler_fem_cons_0117_russian_republic_GRAND_POSADNITSA = { # "Grande possadnitsa"
1912
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1913
+ }
1914
+ frloc_ruler_fem_cons_0117_russian_republic_GREAT_POSADNITSA = { # "Possadnitsa supr阭e"
1915
+ AND = { government_rank = 3 government = republic OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
1916
+ }
1917
+ frloc_ruler_masc_cons_0118_south_slavic_republic_KEFALIJA = { # "K閜hale"
1918
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1919
+ }
1920
+ frloc_ruler_masc_cons_0118_south_slavic_republic_DUHZD = { # "Duzd"
1921
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1922
+ }
1923
+ frloc_ruler_masc_cons_0118_south_slavic_republic_PRINC = { # "Princ"
1924
+ AND = { government_rank = 3 government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1925
+ }
1926
+ frloc_ruler_fem_cons_0118_south_slavic_republic_KEFALIJA = { # "K閜hale"
1927
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1928
+ }
1929
+ frloc_ruler_fem_cons_0118_south_slavic_republic_DUHZD = { # "Duzd"
1930
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1931
+ }
1932
+ frloc_ruler_fem_cons_0118_south_slavic_republic_PRINCEZA = { # "Princesse"
1933
+ AND = { government_rank = 3 government = republic OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
1934
+ }
1935
+ frloc_ruler_masc_cons_0119_florentine_republic_GONFALONIERE = { # "Gonfalonier"
1936
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { tag = TUS tag = LAN } }
1937
+ }
1938
+ frloc_ruler_masc_cons_0119_florentine_republic_GRAND_CONSUL = { # "Grand consul"
1939
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { tag = TUS tag = LAN } }
1940
+ }
1941
+ frloc_ruler_masc_cons_0119_florentine_republic_GREAT_CONSUL = { # "Consul supr阭e"
1942
+ AND = { government_rank = 3 government = republic OR = { tag = TUS tag = LAN } }
1943
+ }
1944
+ frloc_ruler_fem_cons_0119_florentine_republic_GONFALONIERE_fem = { # "Gonfaloni鑢e"
1945
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { tag = TUS tag = LAN } }
1946
+ }
1947
+ frloc_ruler_fem_cons_0119_florentine_republic_GRAND_CONSULESS = { # "Grande consule"
1948
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic OR = { tag = TUS tag = LAN } }
1949
+ }
1950
+ frloc_ruler_fem_cons_0119_florentine_republic_GREAT_CONSULESS = { # "Consule supr阭e"
1951
+ AND = { government_rank = 3 government = republic OR = { tag = TUS tag = LAN } }
1952
+ }
1953
+ frloc_ruler_masc_cons_0120_ambrosian_republic_CAPTAIN_DEFENDER = { # "Capitaine et d閒enseur"
1954
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ambrosian_republic }
1955
+ }
1956
+ frloc_ruler_masc_cons_0120_ambrosian_republic_GRAND_CONSUL = { # "Grand consul"
1957
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ambrosian_republic }
1958
+ }
1959
+ frloc_ruler_masc_cons_0120_ambrosian_republic_GREAT_CONSUL = { # "Consul supr阭e"
1960
+ AND = { government_rank = 3 has_reform = ambrosian_republic }
1961
+ }
1962
+ frloc_ruler_fem_cons_0120_ambrosian_republic_CAPTAIN_DEFENDER_fem = { # "Capitaine et d閒enseuse"
1963
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ambrosian_republic }
1964
+ }
1965
+ frloc_ruler_fem_cons_0120_ambrosian_republic_GRAND_CONSULESS = { # "Grande consule"
1966
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ambrosian_republic }
1967
+ }
1968
+ frloc_ruler_fem_cons_0120_ambrosian_republic_GREAT_CONSULESS = { # "Consule supr阭e"
1969
+ AND = { government_rank = 3 has_reform = ambrosian_republic }
1970
+ }
1971
+ frloc_ruler_masc_cons_0121_german_republic_SYNDIC = { # "Syndic"
1972
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic culture_group = germanic }
1973
+ }
1974
+ frloc_ruler_masc_cons_0121_german_republic_GRAND_SYNDIC = { # "Grand syndic"
1975
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic culture_group = germanic }
1976
+ }
1977
+ frloc_ruler_masc_cons_0121_german_republic_PRESIDENT = { # "Pr閟ident"
1978
+ AND = { government_rank = 3 government = republic culture_group = germanic }
1979
+ }
1980
+ frloc_ruler_fem_cons_0121_german_republic_SYNDIC_fem = { # "Syndique"
1981
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic culture_group = germanic }
1982
+ }
1983
+ frloc_ruler_fem_cons_0121_german_republic_GRAND_SYNDIC_fem = { # "Grande syndique"
1984
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic culture_group = germanic }
1985
+ }
1986
+ frloc_ruler_fem_cons_0121_german_republic_CHAIRMAN_fem = { # "Pr閟idente"
1987
+ AND = { government_rank = 3 government = republic culture_group = germanic }
1988
+ }
1989
+ frloc_ruler_masc_cons_0122_italian_republic_DOGE = { # "Doge"
1990
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic culture_group = latin }
1991
+ }
1992
+ frloc_ruler_masc_cons_0122_italian_republic_SERENE_DOGE = { # "Doge s閞閚issime"
1993
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic culture_group = latin }
1994
+ }
1995
+ frloc_ruler_masc_cons_0122_italian_republic_GREAT_DOGE = { # "Grand doge"
1996
+ AND = { government_rank = 3 government = republic culture_group = latin }
1997
+ }
1998
+ frloc_ruler_fem_cons_0122_italian_republic_DOGARESSA = { # "Dogaresse"
1999
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic culture_group = latin }
2000
+ }
2001
+ frloc_ruler_fem_cons_0122_italian_republic_SERENE_DOGARESSA = { # "Dogaresse s閞閚issime"
2002
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic culture_group = latin }
2003
+ }
2004
+ frloc_ruler_fem_cons_0122_italian_republic_GREAT_DOGARESSA = { # "Grande dogaresse"
2005
+ AND = { government_rank = 3 government = republic culture_group = latin }
2006
+ }
2007
+ frloc_ruler_masc_cons_0123_hindu_republic_SADR = { # "Sadr"
2008
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic religion = hinduism }
2009
+ }
2010
+ frloc_ruler_masc_cons_0123_hindu_republic_PESHWA = { # "Peshw?
2011
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic religion = hinduism }
2012
+ }
2013
+ frloc_ruler_masc_cons_0123_hindu_republic_PRATINIDHI = { # "Pratinidhi"
2014
+ AND = { government_rank = 3 government = republic religion = hinduism }
2015
+ }
2016
+ frloc_ruler_fem_cons_0123_hindu_republic_SADR = { # "Sadr"
2017
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic religion = hinduism }
2018
+ }
2019
+ frloc_ruler_fem_cons_0123_hindu_republic_PESHWA = { # "Peshw?
2020
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic religion = hinduism }
2021
+ }
2022
+ frloc_ruler_fem_cons_0123_hindu_republic_PRATINIDHI = { # "Pratinidhi"
2023
+ AND = { government_rank = 3 government = republic religion = hinduism }
2024
+ }
2025
+ frloc_ruler_masc_cons_0124_buddhist_noble_republic_LORD = { # "Seigneur"
2026
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2027
+ }
2028
+ frloc_ruler_masc_cons_0124_buddhist_noble_republic_PRINCE = { # "Prince"
2029
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2030
+ }
2031
+ frloc_ruler_masc_cons_0124_buddhist_noble_republic_GREAT_PRINCE = { # "Grand prince"
2032
+ AND = { government_rank = 3 has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2033
+ }
2034
+ frloc_ruler_fem_cons_0124_buddhist_noble_republic_LADY = { # "Dame"
2035
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2036
+ }
2037
+ frloc_ruler_fem_cons_0124_buddhist_noble_republic_PRINCESS = { # "Princesse"
2038
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2039
+ }
2040
+ frloc_ruler_fem_cons_0124_buddhist_noble_republic_GREAT_PRINCESS = { # "Grande princesse"
2041
+ AND = { government_rank = 3 has_reform = noble_elite_reform OR = { religion = buddhism religion = vajrayana religion = mahayana } }
2042
+ }
2043
+ frloc_ruler_masc_vow_0125_muslim_republic_EMIR = { # "蒻ir"
2044
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic religion_group = muslim }
2045
+ }
2046
+ frloc_ruler_masc_cons_0125_muslim_republic_VIZIER = { # "Vizir"
2047
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic religion_group = muslim }
2048
+ }
2049
+ frloc_ruler_masc_cons_0125_muslim_republic_GRANDVIZIER = { # "Grand vizir"
2050
+ AND = { government_rank = 3 government = republic religion_group = muslim }
2051
+ }
2052
+ frloc_ruler_fem_vow_0125_muslim_republic_EMIRA = { # "蒻ira"
2053
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic religion_group = muslim }
2054
+ }
2055
+ frloc_ruler_fem_cons_0125_muslim_republic_VIZIER = { # "Vizir"
2056
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic religion_group = muslim }
2057
+ }
2058
+ frloc_ruler_fem_cons_0125_muslim_republic_GRANDVIZIER_fem = { # "Grande vizir"
2059
+ AND = { government_rank = 3 government = republic religion_group = muslim }
2060
+ }
2061
+ frloc_ruler_masc_cons_0126_march_eastern_christian_monarchy_PRINCE = { # "Prince"
2062
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
2063
+ }
2064
+ frloc_ruler_fem_cons_0126_march_eastern_christian_monarchy_PRINCESS = { # "Princesse"
2065
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
2066
+ }
2067
+ frloc_ruler_masc_cons_0127_gov_holy_horde_CRUSADER = { # "Chef de la croisade"
2068
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
2069
+ }
2070
+ frloc_ruler_masc_cons_0127_gov_holy_horde_GRAND_CRUSADER = { # "Dirigeant de la croisade"
2071
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
2072
+ }
2073
+ frloc_ruler_fem_cons_0127_gov_holy_horde_CRUSADER_fem = { # "Cheffe de la croisade"
2074
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
2075
+ }
2076
+ frloc_ruler_fem_cons_0127_gov_holy_horde_GRAND_CRUSADER_fem = { # "Dirigeante de la croisade"
2077
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
2078
+ }
2079
+ frloc_ruler_masc_cons_0127b_gov_japanese_divine_empire_GOD_EMPEROR = { # "Tenn?
2080
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
2081
+ }
2082
+ frloc_ruler_fem_cons_0127b_gov_japanese_divine_empire_GODDESS_EMPRESS = { # "Josei-tenn?
2083
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
2084
+ }
2085
+
2086
+
2087
+ ### MIDDLE PRIORITY / PRIORIT?INTERM蒁IAIRE = 01_government_names.txt ###
2088
+
2089
+ frloc_ruler_masc_cons_1001_gov_steppe_horde_JINONG = { # "Jinong"
2090
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2091
+ }
2092
+ frloc_ruler_masc_cons_1001_gov_steppe_horde_KHAN = { # "Kh鈔"
2093
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2094
+ }
2095
+ frloc_ruler_masc_cons_1001_gov_steppe_horde_KHAGAN = { # "Khagan"
2096
+ AND = { government_rank = 3 has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2097
+ }
2098
+ frloc_ruler_fem_cons_1001_gov_steppe_horde_JINONG = { # "Jinong"
2099
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2100
+ }
2101
+ frloc_ruler_fem_cons_1001_gov_steppe_horde_KHATUN = { # "Khatoun"
2102
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2103
+ }
2104
+ frloc_ruler_fem_cons_1001_gov_steppe_horde_GREAT_KHATUN = { # "Grande khatoun"
2105
+ AND = { government_rank = 3 has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
2106
+ }
2107
+ frloc_ruler_masc_cons_1002_gov_native_council_CHIEF = { # "Chef"
2108
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2109
+ }
2110
+ frloc_ruler_masc_cons_1002_gov_native_council_HIGH_CHIEF = { # "Grand chef"
2111
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2112
+ }
2113
+ frloc_ruler_masc_cons_1002_gov_native_council_PARAMOUNT_CHIEF = { # "Chef supr阭e"
2114
+ AND = { government_rank = 3 OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2115
+ }
2116
+ frloc_ruler_fem_cons_1002_gov_native_council_CHIEFTESS = { # "Cheffe"
2117
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2118
+ }
2119
+ frloc_ruler_fem_cons_1002_gov_native_council_HIGH_CHIEFTESS = { # "Grande cheffe"
2120
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2121
+ }
2122
+ frloc_ruler_fem_cons_1002_gov_native_council_PARAMOUNT_CHIEFTESS = { # "Cheffe supr阭e"
2123
+ AND = { government_rank = 3 OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
2124
+ }
2125
+ frloc_ruler_masc_cons_1003_gov_colonial_government_GOVERNOR = { # "Gouverneur"
2126
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
2127
+ }
2128
+ frloc_ruler_fem_cons_1003_gov_colonial_government_GOVERNESS = { # "Gouverneure"
2129
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = colonial_government has_reform = crown_colony_government has_reform = private_enterprise_colony_government has_reform = self_governing_colony_government } }
2130
+ }
2131
+ frloc_ruler_masc_vow_1004_federal_monarchy_statists_SPEAKER = { # "Orateur"
2132
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2133
+ }
2134
+ frloc_ruler_masc_cons_1004_federal_monarchy_statists_CHANCELOR = { # "Chancelier"
2135
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2136
+ }
2137
+ frloc_ruler_masc_cons_1004_federal_monarchy_statists_PRESIDENT = { # "Pr閟ident"
2138
+ AND = { government_rank = 3 has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2139
+ }
2140
+ frloc_ruler_fem_vow_1004_federal_monarchy_statists_SPEAKER_fem = { # "Oratrice"
2141
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2142
+ }
2143
+ frloc_ruler_fem_cons_1004_federal_monarchy_statists_CHANCELOR_fem = { # "Chanceli鑢e"
2144
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2145
+ }
2146
+ frloc_ruler_fem_cons_1004_federal_monarchy_statists_PRESIDENT_fem = { # "Pr閟idente"
2147
+ AND = { government_rank = 3 has_reform = states_general_reform is_statists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2148
+ }
2149
+ frloc_ruler_masc_cons_1005_federal_monarchy_monarchists_DUKE = { # "Duc"
2150
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2151
+ }
2152
+ frloc_ruler_masc_cons_1005_federal_monarchy_monarchists_KING = { # "Roi"
2153
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2154
+ }
2155
+ frloc_ruler_masc_vow_1005_federal_monarchy_monarchists_EMPEROR = { # "Empereur"
2156
+ AND = { government_rank = 3 has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2157
+ }
2158
+ frloc_ruler_fem_cons_1005_federal_monarchy_monarchists_DUCHESS = { # "Duchesse"
2159
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2160
+ }
2161
+ frloc_ruler_fem_cons_1005_federal_monarchy_monarchists_QUEEN = { # "Reine"
2162
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2163
+ }
2164
+ frloc_ruler_fem_vow_1005_federal_monarchy_monarchists_EMPRESS = { # "Imp閞atrice"
2165
+ AND = { government_rank = 3 has_reform = states_general_reform is_monarchists_in_power = yes NOT = { has_reform = parliamentary_reform } NOT = { has_reform = presidential_reform } NOT = { is_revolutionary_republic_trigger = yes } NOT = { has_reform = constitutional_republic } NOT = { has_reform = presidential_despot_reform } }
2166
+ }
2167
+ #frloc_ruler_masc_cons_1006_gov_revolutionary_republic_CONSUL = { # "Consul"
2168
+ # AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes }
2169
+ #}
2170
+ #frloc_ruler_fem_cons_1006_gov_revolutionary_republic_CONSULESS = { # "Consule"
2171
+ # AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } is_revolutionary_republic_trigger = yes }
2172
+ #}
2173
+ frloc_ruler_masc_cons_1007_noble_republic_LORD = { # "Seigneur"
2174
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2175
+ }
2176
+ frloc_ruler_masc_cons_1007_noble_republic_PRINCE = { # "Prince"
2177
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2178
+ }
2179
+ frloc_ruler_masc_cons_1007_noble_republic_GREAT_PRINCE = { # "Grand prince"
2180
+ AND = { government_rank = 3 OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2181
+ }
2182
+ frloc_ruler_fem_cons_1007_noble_republic_LADY = { # "Dame"
2183
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2184
+ }
2185
+ frloc_ruler_fem_cons_1007_noble_republic_PRINCESS = { # "Princesse"
2186
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2187
+ }
2188
+ frloc_ruler_fem_cons_1007_noble_republic_GREAT_PRINCESS = { # "Grande princesse"
2189
+ AND = { government_rank = 3 OR = { has_reform = noble_elite_reform has_reform = noble_republic } }
2190
+ }
2191
+ frloc_ruler_masc_cons_1008_gov_republican_dictatorship_PROTECTOR = { # "Protecteur"
2192
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = presidential_despot_reform }
2193
+ }
2194
+ frloc_ruler_masc_cons_1008_gov_republican_dictatorship_LORD_PROTECTOR = { # "Seigneur protecteur"
2195
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = presidential_despot_reform }
2196
+ }
2197
+ frloc_ruler_masc_cons_1008_gov_republican_dictatorship_PRESIDENT = { # "Pr閟ident"
2198
+ AND = { government_rank = 3 has_reform = presidential_despot_reform }
2199
+ }
2200
+ frloc_ruler_fem_cons_1008_gov_republican_dictatorship_PROTECTOR_fem = { # "Protectrice"
2201
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = presidential_despot_reform }
2202
+ }
2203
+ frloc_ruler_fem_cons_1008_gov_republican_dictatorship_LADY_PROTECTOR = { # "Dame protectrice"
2204
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = presidential_despot_reform }
2205
+ }
2206
+ frloc_ruler_fem_cons_1008_gov_republican_dictatorship_PRESIDENT_fem = { # "Pr閟idente"
2207
+ AND = { government_rank = 3 has_reform = presidential_despot_reform }
2208
+ }
2209
+ frloc_ruler_masc_cons_1009_gov_bureaucratic_despotism_COUNCILOR = { # "Conseiller"
2210
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = bureaucratic_despotism }
2211
+ }
2212
+ frloc_ruler_masc_cons_1009_gov_bureaucratic_despotism_GRAND_COUNCILOR = { # "Grand conseiller"
2213
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = bureaucratic_despotism }
2214
+ }
2215
+ frloc_ruler_masc_cons_1009_gov_bureaucratic_despotism_HIGH_COUNCILOR = { # "Conseiller supr阭e"
2216
+ AND = { government_rank = 3 has_reform = bureaucratic_despotism }
2217
+ }
2218
+ frloc_ruler_fem_cons_1009_gov_bureaucratic_despotism_COUNCILOR_fem = { # "Conseill鑢e"
2219
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = bureaucratic_despotism }
2220
+ }
2221
+ frloc_ruler_fem_cons_1009_gov_bureaucratic_despotism_GRAND_COUNCILOR_fem = { # "Grande conseill鑢e"
2222
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = bureaucratic_despotism }
2223
+ }
2224
+ frloc_ruler_fem_cons_1009_gov_bureaucratic_despotism_HIGH_COUNCILOR_fem = { # "Conseill鑢e supr阭e"
2225
+ AND = { government_rank = 3 has_reform = bureaucratic_despotism }
2226
+ }
2227
+ frloc_ruler_masc_cons_1010_gov_papal_government_POPE = { # "Pape"
2228
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform }
2229
+ }
2230
+ frloc_ruler_fem_cons_1010_gov_papal_government_POPETTE = { # "Papesse"
2231
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform }
2232
+ }
2233
+ frloc_ruler_masc_cons_1011_gov_daimyo_LORD = { # "Seigneur"
2234
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
2235
+ }
2236
+ frloc_ruler_fem_cons_1011_gov_daimyo_LADY = { # "Dame"
2237
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
2238
+ }
2239
+ frloc_ruler_masc_cons_1011b_gov_appanage_DUKE = { # "Duc"
2240
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
2241
+ }
2242
+ frloc_ruler_fem_cons_1011b_gov_appanage_DUCHESS = { # "Duchesse"
2243
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
2244
+ }
2245
+ frloc_ruler_masc_cons_1012_gov_indep_daimyo_LORD = { # "Seigneur"
2246
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
2247
+ }
2248
+ frloc_ruler_fem_cons_1012_gov_indep_daimyo_LADY = { # "Dame"
2249
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
2250
+ }
2251
+ frloc_ruler_masc_cons_1013_gov_shogunate_SHOGUN = { # "Sh鬵un"
2252
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
2253
+ }
2254
+ frloc_ruler_fem_cons_1013_gov_shogunate_SHOGUNESS = { # "Sh鬵unesse"
2255
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
2256
+ }
2257
+ frloc_ruler_masc_cons_1014_gov_tribal_kingdom_CHIEF = { # "Chef"
2258
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_kingdom }
2259
+ }
2260
+ frloc_ruler_masc_cons_1014_gov_tribal_kingdom_KING = { # "Roi"
2261
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_kingdom }
2262
+ }
2263
+ frloc_ruler_masc_vow_1014_gov_tribal_kingdom_EMPEROR = { # "Empereur"
2264
+ AND = { government_rank = 3 has_reform = tribal_kingdom }
2265
+ }
2266
+ frloc_ruler_fem_cons_1014_gov_tribal_kingdom_CHIEFTESS = { # "Cheffe"
2267
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_kingdom }
2268
+ }
2269
+ frloc_ruler_fem_cons_1014_gov_tribal_kingdom_QUEEN = { # "Reine"
2270
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_kingdom }
2271
+ }
2272
+ frloc_ruler_fem_vow_1014_gov_tribal_kingdom_EMPRESS = { # "Imp閞atrice"
2273
+ AND = { government_rank = 3 has_reform = tribal_kingdom }
2274
+ }
2275
+ frloc_ruler_masc_cons_1015_gov_tribal_CHIEF = { # "Chef"
2276
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2277
+ }
2278
+ frloc_ruler_masc_cons_1015_gov_tribal_HIGH_CHIEF = { # "Grand chef"
2279
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2280
+ }
2281
+ frloc_ruler_masc_cons_1015_gov_tribal_PARAMOUNT_CHIEF = { # "Chef supr阭e"
2282
+ AND = { government_rank = 3 OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2283
+ }
2284
+ frloc_ruler_fem_cons_1015_gov_tribal_CHIEFTESS = { # "Cheffe"
2285
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2286
+ }
2287
+ frloc_ruler_fem_cons_1015_gov_tribal_HIGH_CHIEFTESS = { # "Grande cheffe"
2288
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2289
+ }
2290
+ frloc_ruler_fem_cons_1015_gov_tribal_PARAMOUNT_CHIEFTESS = { # "Cheffe supr阭e"
2291
+ AND = { government_rank = 3 OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
2292
+ }
2293
+ frloc_ruler_masc_vow_1016_gov_tribal_democracy_ELDER = { # "Ancien"
2294
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_democracy_legacy }
2295
+ }
2296
+ frloc_ruler_masc_cons_1016_gov_tribal_democracy_HIGH_ELDER = { # "Grand ancien"
2297
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_democracy_legacy }
2298
+ }
2299
+ frloc_ruler_masc_vow_1016_gov_tribal_democracy_PARAMOUNT_ELDER = { # "Ancien supr阭e"
2300
+ AND = { government_rank = 3 has_reform = tribal_democracy_legacy }
2301
+ }
2302
+ frloc_ruler_fem_vow_1016_gov_tribal_democracy_ELDER_fem = { # "Ancienne"
2303
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_democracy_legacy }
2304
+ }
2305
+ frloc_ruler_fem_cons_1016_gov_tribal_democracy_HIGH_ELDER_fem = { # "Grande ancienne"
2306
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_democracy_legacy }
2307
+ }
2308
+ frloc_ruler_fem_vow_1016_gov_tribal_democracy_PARAMOUNT_ELDER_fem = { # "Ancienne supr阭e"
2309
+ AND = { government_rank = 3 has_reform = tribal_democracy_legacy }
2310
+ }
2311
+ frloc_ruler_masc_cons_1017_gov_constitutional_republic_CHANCELOR = { # "Chancelier"
2312
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { tag = USA has_reform = constitutional_republic has_reform = presidential_reform has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
2313
+ }
2314
+ frloc_ruler_masc_cons_1017_gov_constitutional_republic_PRESIDENT = { # "Pr閟ident"
2315
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = republic OR = { tag = USA has_reform = constitutional_republic has_reform = presidential_reform has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
2316
+ }
2317
+ frloc_ruler_fem_cons_1017_gov_constitutional_republic_CHANCELOR_fem = { # "Chanceli鑢e"
2318
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic OR = { tag = USA has_reform = constitutional_republic has_reform = presidential_reform has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
2319
+ }
2320
+ frloc_ruler_fem_cons_1017_gov_constitutional_republic_PRESIDENT_fem = { # "Pr閟idente"
2321
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = republic OR = { tag = USA has_reform = constitutional_republic has_reform = presidential_reform has_reform = parliamentary_reform } NOT = { has_reform = presidential_despot_reform } }
2322
+ }
2323
+ frloc_ruler_masc_cons_1018_hre_county_COUNT = { # "Comte"
2324
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2325
+ }
2326
+ frloc_ruler_masc_cons_1018_hre_county_KING = { # "Roi"
2327
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2328
+ }
2329
+ frloc_ruler_masc_vow_1018_hre_county_EMPEROR = { # "Empereur"
2330
+ AND = { government_rank = 3 has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2331
+ }
2332
+ frloc_ruler_fem_cons_1018_hre_county_COUNTESS = { # "Comtesse"
2333
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2334
+ }
2335
+ frloc_ruler_fem_cons_1018_hre_county_QUEEN = { # "Reine"
2336
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2337
+ }
2338
+ frloc_ruler_fem_vow_1018_hre_county_EMPRESS = { # "Imp閞atrice"
2339
+ AND = { government_rank = 3 has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
2340
+ }
2341
+ frloc_ruler_masc_cons_1019_ikko_ikki_peasants_MONSHU = { # "Monshu"
2342
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2343
+ }
2344
+ frloc_ruler_masc_cons_1019_ikko_ikki_peasants_HIGH_MONSHU = { # "Monshu-Sh鬵un"
2345
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2346
+ }
2347
+ frloc_ruler_masc_cons_1019_ikko_ikki_peasants_SHINRAN = { # "Shinran"
2348
+ AND = { government_rank = 3 has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2349
+ }
2350
+ frloc_ruler_fem_cons_1019_ikko_ikki_peasants_MONSHU = { # "Monshu"
2351
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2352
+ }
2353
+ frloc_ruler_fem_cons_1019_ikko_ikki_peasants_HIGH_MONSHUESS = { # "Monshu-Sh鬵unesse"
2354
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2355
+ }
2356
+ frloc_ruler_fem_cons_1019_ikko_ikki_peasants_SHINRAN = { # "Shinran"
2357
+ AND = { government_rank = 3 has_reform = ikko_ikki_republic_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2358
+ }
2359
+ frloc_ruler_masc_cons_1020_ikko_ikki_temple_MONSHU = { # "Monshu"
2360
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2361
+ }
2362
+ frloc_ruler_masc_cons_1020_ikko_ikki_temple_HIGH_MONSHU = { # "Monshu-Sh鬵un"
2363
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2364
+ }
2365
+ frloc_ruler_masc_cons_1020_ikko_ikki_temple_SHINRAN = { # "Shinran"
2366
+ AND = { government_rank = 3 has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2367
+ }
2368
+ frloc_ruler_fem_cons_1020_ikko_ikki_temple_MONSHU = { # "Monshu"
2369
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2370
+ }
2371
+ frloc_ruler_fem_cons_1020_ikko_ikki_temple_HIGH_MONSHUESS = { # "Monshu-Sh鬵unesse"
2372
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2373
+ }
2374
+ frloc_ruler_fem_cons_1020_ikko_ikki_temple_SHINRAN = { # "Shinran"
2375
+ AND = { government_rank = 3 has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2376
+ }
2377
+ frloc_ruler_masc_cons_1021_asian_monastic_order_MONSHU = { # "Monshu"
2378
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2379
+ }
2380
+ frloc_ruler_masc_cons_1021_asian_monastic_order_HIGH_MONSHU = { # "Monshu-Sh鬵un"
2381
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2382
+ }
2383
+ frloc_ruler_masc_cons_1021_asian_monastic_order_SHINRAN = { # "Shinran"
2384
+ AND = { government_rank = 3 has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2385
+ }
2386
+ frloc_ruler_fem_cons_1021_asian_monastic_order_MONSHU = { # "Monshu"
2387
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2388
+ }
2389
+ frloc_ruler_fem_cons_1021_asian_monastic_order_HIGH_MONSHUESS = { # "Monshu-Sh鬵unesse"
2390
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2391
+ }
2392
+ frloc_ruler_fem_cons_1021_asian_monastic_order_SHINRAN = { # "Shinran"
2393
+ AND = { government_rank = 3 has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
2394
+ }
2395
+ frloc_ruler_masc_cons_1022_northerner_king_monastic_order_FIRST_RANGER = { # "Seigneur-chevalier"
2396
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2397
+ }
2398
+ frloc_ruler_masc_cons_1022_northerner_king_monastic_order_KNIGHT_KING = { # "Roi-chevalier"
2399
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2400
+ }
2401
+ frloc_ruler_fem_cons_1022_northerner_king_monastic_order_FIRST_RANGER_fem = { # "Dame-chevalier"
2402
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2403
+ }
2404
+ frloc_ruler_fem_cons_1022_northerner_king_monastic_order_KNIGHT_QUEEN = { # "Reine-chevalier"
2405
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2406
+ }
2407
+ frloc_ruler_masc_cons_1023_northerner_monastic_order_FIRST_RANGER = { # "Seigneur-chevalier"
2408
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2409
+ }
2410
+ frloc_ruler_masc_cons_1023_northerner_monastic_order_LORD_COMMANDER = { # "Seigneur-commandeur"
2411
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2412
+ }
2413
+ frloc_ruler_fem_cons_1023_northerner_monastic_order_FIRST_RANGER_fem = { # "Dame-chevalier"
2414
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2415
+ }
2416
+ frloc_ruler_fem_cons_1023_northerner_monastic_order_LADY_COMMANDER = { # "Dame-commanderesse"
2417
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
2418
+ }
2419
+ frloc_ruler_masc_cons_1024_teutonic_monastic_order_HOCHMEISTER = { # "Hochmeister"
2420
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform tag = TEU }
2421
+ }
2422
+ frloc_ruler_masc_cons_1024_teutonic_monastic_order_MAGISTER_HOCHMEISTER = { # "Grand Hochmeister"
2423
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_order_reform tag = TEU }
2424
+ }
2425
+ frloc_ruler_masc_cons_1024_teutonic_monastic_order_DEUTSCHMEISTER = { # "Magister Germani?
2426
+ AND = { government_rank = 3 has_reform = monastic_order_reform tag = TEU }
2427
+ }
2428
+ frloc_ruler_fem_cons_1024_teutonic_monastic_order_HOCHMEISTER_fem = { # "Hochmeisterin"
2429
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_order_reform tag = TEU }
2430
+ }
2431
+ frloc_ruler_fem_cons_1024_teutonic_monastic_order_MAGISTER_HOCHMEISTER_fem = { # "Grande Hochmeisterin"
2432
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_order_reform tag = TEU }
2433
+ }
2434
+ frloc_ruler_fem_cons_1024_teutonic_monastic_order_DEUTSCHMEISTER_fem = { # "Magistra Germani?
2435
+ AND = { government_rank = 3 has_reform = monastic_order_reform tag = TEU }
2436
+ }
2437
+ frloc_ruler_masc_cons_1025_livonian_monastic_order_LANDMEISTER = { # "Landmeister"
2438
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = LIV }
2439
+ }
2440
+ frloc_ruler_fem_cons_1025_livonian_monastic_order_LANDMEISTER_fem = { # "Landmeisterin"
2441
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = LIV }
2442
+ }
2443
+ frloc_ruler_masc_cons_1026_germanic_monastic_order_GROSSMEISTER = { # "Gro適eister"
2444
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy has_reform = holy_state_reform } } culture_group = germanic }
2445
+ }
2446
+ frloc_ruler_fem_cons_1026_germanic_monastic_order_GROSSMEISTER_fem = { # "Gro適eisterin"
2447
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy has_reform = holy_state_reform } } culture_group = germanic }
2448
+ }
2449
+ frloc_ruler_masc_cons_1027_brewing_order_TRAPPIST = { # "Trappiste"
2450
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_breweries_reform religion = catholic }
2451
+ }
2452
+ frloc_ruler_masc_cons_1027_brewing_order_ARCH_TRAPPIST = { # "Prieur trappiste"
2453
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_breweries_reform religion = catholic }
2454
+ }
2455
+ frloc_ruler_masc_cons_1027_brewing_order_BREWMASTER = { # "Ma顃re-brasseur"
2456
+ AND = { government_rank = 3 has_reform = monastic_breweries_reform religion = catholic }
2457
+ }
2458
+ frloc_ruler_fem_cons_1027_brewing_order_TRAPPISTINE = { # "Trappistine"
2459
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monastic_breweries_reform religion = catholic }
2460
+ }
2461
+ frloc_ruler_fem_cons_1027_brewing_order_ARCH_TRAPPISTINE = { # "Prieure trappistine"
2462
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monastic_breweries_reform religion = catholic }
2463
+ }
2464
+ frloc_ruler_fem_cons_1027_brewing_order_BREWMISTRESS = { # "Ma顃resse-brasseuse"
2465
+ AND = { government_rank = 3 has_reform = monastic_breweries_reform religion = catholic }
2466
+ }
2467
+ frloc_ruler_masc_cons_1028_jewish_theocracy_RABBI = { # "Rabbin"
2468
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = jewish government = theocracy }
2469
+ }
2470
+ frloc_ruler_masc_cons_1028_jewish_theocracy_GRAND_RABBI = { # "Rabbin supr阭e"
2471
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = jewish government = theocracy }
2472
+ }
2473
+ frloc_ruler_masc_cons_1028_jewish_theocracy_KOHEN_GADOL = { # "Kohen ha-Gadol"
2474
+ AND = { government_rank = 3 religion = jewish government = theocracy }
2475
+ }
2476
+ frloc_ruler_fem_cons_1028_jewish_theocracy_RABBI = { # "Rabbin"
2477
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = jewish government = theocracy }
2478
+ }
2479
+ frloc_ruler_fem_cons_1028_jewish_theocracy_GRAND_RABBI = { # "Rabbin supr阭e"
2480
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = jewish government = theocracy }
2481
+ }
2482
+ frloc_ruler_fem_cons_1028_jewish_theocracy_KOHEN_GADOL = { # "Kohen ha-Gadol"
2483
+ AND = { government_rank = 3 religion = jewish government = theocracy }
2484
+ }
2485
+ frloc_ruler_masc_cons_1029_zoroastrian_theocracy_HERBAD = { # "H阹bad"
2486
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = zoroastrian government = theocracy }
2487
+ }
2488
+ frloc_ruler_masc_cons_1029_zoroastrian_theocracy_MOBED = { # "Mobad"
2489
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = zoroastrian government = theocracy }
2490
+ }
2491
+ frloc_ruler_masc_cons_1029_zoroastrian_theocracy_MOABADAN_MOABAD = { # "Mobad鈔 mobad"
2492
+ AND = { government_rank = 3 religion = zoroastrian government = theocracy }
2493
+ }
2494
+ frloc_ruler_fem_cons_1029_zoroastrian_theocracy_HERBAD = { # "H阹bad"
2495
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = zoroastrian government = theocracy }
2496
+ }
2497
+ frloc_ruler_fem_cons_1029_zoroastrian_theocracy_MOBEDYAR = { # "Mobadyar"
2498
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = zoroastrian government = theocracy }
2499
+ }
2500
+ frloc_ruler_fem_cons_1029_zoroastrian_theocracy_MOABADAN_MOABAD = { # "Mobad鈔 mobad"
2501
+ AND = { government_rank = 3 religion = zoroastrian government = theocracy }
2502
+ }
2503
+ frloc_ruler_masc_cons_1030_sikh_theocracy_JATHEDAR = { # "Jathedar"
2504
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sikhism government = theocracy }
2505
+ }
2506
+ frloc_ruler_masc_cons_1030_sikh_theocracy_MISLDAR = { # "Misldar"
2507
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sikhism government = theocracy }
2508
+ }
2509
+ frloc_ruler_masc_cons_1030_sikh_theocracy_GREAT_MISLDAR = { # "Misldar supr阭e"
2510
+ AND = { government_rank = 3 religion = sikhism government = theocracy }
2511
+ }
2512
+ frloc_ruler_fem_cons_1030_sikh_theocracy_JATHEDAR = { # "Jathedar"
2513
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sikhism government = theocracy }
2514
+ }
2515
+ frloc_ruler_fem_cons_1030_sikh_theocracy_MISLDAR = { # "Misldar"
2516
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sikhism government = theocracy }
2517
+ }
2518
+ frloc_ruler_fem_cons_1030_sikh_theocracy_GREAT_MISLDAR = { # "Misldar supr阭e"
2519
+ AND = { government_rank = 3 religion = sikhism government = theocracy }
2520
+ }
2521
+ frloc_ruler_masc_cons_1031_hindu_theocracy_PANDIT = { # "Pandit"
2522
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = hinduism government = theocracy }
2523
+ }
2524
+ frloc_ruler_masc_cons_1031_hindu_theocracy_PANDITRAO = { # "Panditrao"
2525
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = hinduism government = theocracy }
2526
+ }
2527
+ frloc_ruler_masc_cons_1031_hindu_theocracy_HIGH_GURU = { # "Gourou supr阭e"
2528
+ AND = { government_rank = 3 religion = hinduism government = theocracy }
2529
+ }
2530
+ frloc_ruler_fem_cons_1031_hindu_theocracy_PANDIT = { # "Pandit"
2531
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = hinduism government = theocracy }
2532
+ }
2533
+ frloc_ruler_fem_cons_1031_hindu_theocracy_PANDITRAO = { # "Panditrao"
2534
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = hinduism government = theocracy }
2535
+ }
2536
+ frloc_ruler_fem_cons_1031_hindu_theocracy_HIGH_GURU = { # "Gourou supr阭e"
2537
+ AND = { government_rank = 3 religion = hinduism government = theocracy }
2538
+ }
2539
+ frloc_ruler_masc_vow_1032_shinto_theocracy_O_KANNUSHI = { # "?kannushi"
2540
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shinto government = theocracy }
2541
+ }
2542
+ frloc_ruler_fem_vow_1032_shinto_theocracy_O_KANNUSHI = { # "?kannushi"
2543
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shinto government = theocracy }
2544
+ }
2545
+ frloc_ruler_masc_cons_1033_buddhist_theocracy_LAMA = { # "Lama"
2546
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2547
+ }
2548
+ frloc_ruler_masc_cons_1033_buddhist_theocracy_TULKU = { # "T黮kou"
2549
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2550
+ }
2551
+ frloc_ruler_masc_cons_1033_buddhist_theocracy_GREAT_TULKU = { # "T黮kou supr阭e"
2552
+ AND = { government_rank = 3 OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2553
+ }
2554
+ frloc_ruler_fem_cons_1033_buddhist_theocracy_LAMA = { # "Lama"
2555
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2556
+ }
2557
+ frloc_ruler_fem_cons_1033_buddhist_theocracy_TULKU = { # "T黮kou"
2558
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2559
+ }
2560
+ frloc_ruler_fem_cons_1033_buddhist_theocracy_GREAT_TULKU = { # "T黮kou supr阭e"
2561
+ AND = { government_rank = 3 OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
2562
+ }
2563
+ frloc_ruler_masc_vow_1034_confucian_theocracy_ELDER = { # "Ancien"
2564
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = confucianism government = theocracy }
2565
+ }
2566
+ frloc_ruler_masc_cons_1034_confucian_theocracy_HIGH_ELDER = { # "Grand ancien"
2567
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = confucianism government = theocracy }
2568
+ }
2569
+ frloc_ruler_masc_cons_1034_confucian_theocracy_SON_OF_HEAVEN = { # "Fils du ciel"
2570
+ AND = { government_rank = 3 religion = confucianism government = theocracy }
2571
+ }
2572
+ frloc_ruler_fem_vow_1034_confucian_theocracy_ELDER_fem = { # "Ancienne"
2573
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = confucianism government = theocracy }
2574
+ }
2575
+ frloc_ruler_fem_cons_1034_confucian_theocracy_HIGH_ELDER_fem = { # "Grande ancienne"
2576
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = confucianism government = theocracy }
2577
+ }
2578
+ frloc_ruler_fem_cons_1034_confucian_theocracy_DAUGHTER_OF_HEAVEN = { # "Fille du ciel"
2579
+ AND = { government_rank = 3 religion = confucianism government = theocracy }
2580
+ }
2581
+ frloc_ruler_masc_vow_1035_ibadi_theocracy_IMAM = { # "Im鈓"
2582
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2583
+ }
2584
+ frloc_ruler_masc_cons_1035_ibadi_theocracy_GREAT_IMAM = { # "Grand im鈓"
2585
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2586
+ }
2587
+ frloc_ruler_masc_vow_1035_ibadi_theocracy_HIGH_IMAM = { # "Im鈓 supr阭e"
2588
+ AND = { government_rank = 3 religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2589
+ }
2590
+ frloc_ruler_fem_vow_1035_ibadi_theocracy_IMAM_fem = { # "Im鈓?
2591
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2592
+ }
2593
+ frloc_ruler_fem_cons_1035_ibadi_theocracy_GREAT_IMAM_fem = { # "Grande Im鈓?
2594
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2595
+ }
2596
+ frloc_ruler_fem_vow_1035_ibadi_theocracy_HIGH_IMAM_fem = { # "Im鈓?supr阭e"
2597
+ AND = { government_rank = 3 religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
2598
+ }
2599
+ frloc_ruler_masc_vow_1036_yemenite_theocracy_IMAM = { # "Im鈓"
2600
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2601
+ }
2602
+ frloc_ruler_masc_cons_1036_yemenite_theocracy_GREAT_IMAM = { # "Grand im鈓"
2603
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2604
+ }
2605
+ frloc_ruler_masc_vow_1036_yemenite_theocracy_HIGH_IMAM = { # "Im鈓 supr阭e"
2606
+ AND = { government_rank = 3 religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2607
+ }
2608
+ frloc_ruler_fem_vow_1036_yemenite_theocracy_IMAM_fem = { # "Im鈓?
2609
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2610
+ }
2611
+ frloc_ruler_fem_cons_1036_yemenite_theocracy_GREAT_IMAM_fem = { # "Grande Im鈓?
2612
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2613
+ }
2614
+ frloc_ruler_fem_vow_1036_yemenite_theocracy_HIGH_IMAM_fem = { # "Im鈓?supr阭e"
2615
+ AND = { government_rank = 3 religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
2616
+ }
2617
+ frloc_ruler_masc_cons_1037_shiite_theocracy_SHEIKH = { # "Cheikh"
2618
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2619
+ }
2620
+ frloc_ruler_masc_vow_1037_shiite_theocracy_AYATOLLAH = { # "Ayatollah"
2621
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2622
+ }
2623
+ frloc_ruler_masc_vow_1037_shiite_theocracy_IMAM = { # "Im鈓"
2624
+ AND = { government_rank = 3 religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2625
+ }
2626
+ frloc_ruler_fem_cons_1037_shiite_theocracy_SHEIKHA = { # "Cheikha"
2627
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2628
+ }
2629
+ frloc_ruler_fem_vow_1037_shiite_theocracy_AYATOLLAH = { # "Ayatollah"
2630
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2631
+ }
2632
+ frloc_ruler_fem_vow_1037_shiite_theocracy_IMAM_fem = { # "Im鈓?
2633
+ AND = { government_rank = 3 religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
2634
+ }
2635
+ frloc_ruler_masc_cons_1038_uyghur_theocracy_SHEIKH = { # "Cheikh"
2636
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2637
+ }
2638
+ frloc_ruler_masc_cons_1038_uyghur_theocracy_KHOJA = { # "Khoja"
2639
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2640
+ }
2641
+ frloc_ruler_masc_cons_1038_uyghur_theocracy_GREAT_KHOJA = { # "Grand khoja"
2642
+ AND = { government_rank = 3 religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2643
+ }
2644
+ frloc_ruler_fem_cons_1038_uyghur_theocracy_SHEIKHA = { # "Cheikha"
2645
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2646
+ }
2647
+ frloc_ruler_fem_cons_1038_uyghur_theocracy_KHOJA = { # "Khoja"
2648
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2649
+ }
2650
+ frloc_ruler_fem_cons_1038_uyghur_theocracy_GREAT_KHOJA_fem = { # "Grande khoja"
2651
+ AND = { government_rank = 3 religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
2652
+ }
2653
+ frloc_ruler_masc_cons_1039_sunni_theocracy_SHEIKH = { # "Cheikh"
2654
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2655
+ }
2656
+ frloc_ruler_masc_vow_1039_sunni_theocracy_IMAM = { # "Im鈓"
2657
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2658
+ }
2659
+ frloc_ruler_masc_vow_1039_sunni_theocracy_HIGH_IMAM = { # "Im鈓 supr阭e"
2660
+ AND = { government_rank = 3 religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2661
+ }
2662
+ frloc_ruler_fem_cons_1039_sunni_theocracy_SHEIKHA = { # "Cheikha"
2663
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2664
+ }
2665
+ frloc_ruler_fem_vow_1039_sunni_theocracy_IMAM_fem = { # "Im鈓?
2666
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2667
+ }
2668
+ frloc_ruler_fem_vow_1039_sunni_theocracy_HIGH_IMAM_fem = { # "Im鈓?supr阭e"
2669
+ AND = { government_rank = 3 religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
2670
+ }
2671
+ frloc_ruler_masc_vow_1040_orthodox_theocracy_BISHOP = { # "蓈阸ue"
2672
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { religion = orthodox religion = coptic } government = theocracy }
2673
+ }
2674
+ frloc_ruler_masc_vow_1040_orthodox_theocracy_ARCHBISHOP = { # "Archev阸ue"
2675
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { religion = orthodox religion = coptic } government = theocracy }
2676
+ }
2677
+ frloc_ruler_masc_cons_1040_orthodox_theocracy_PATRIARCH = { # "Patriarche"
2678
+ AND = { government_rank = 3 OR = { religion = orthodox religion = coptic } government = theocracy }
2679
+ }
2680
+ frloc_ruler_fem_vow_1040_orthodox_theocracy_BISHOP_fem = { # "蓈阸ue"
2681
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { religion = orthodox religion = coptic } government = theocracy }
2682
+ }
2683
+ frloc_ruler_fem_vow_1040_orthodox_theocracy_ARCHBISHOP_fem = { # "Archev阸ue"
2684
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { religion = orthodox religion = coptic } government = theocracy }
2685
+ }
2686
+ frloc_ruler_fem_cons_1040_orthodox_theocracy_MATRIARCH = { # "Matriarche"
2687
+ AND = { government_rank = 3 OR = { religion = orthodox religion = coptic } government = theocracy }
2688
+ }
2689
+ frloc_ruler_masc_cons_1041_inti_theocracy_MICHOQ = { # "Michoq"
2690
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = inti government = theocracy }
2691
+ }
2692
+ frloc_ruler_masc_cons_1041_inti_theocracy_HIGH_PRIEST = { # "Grand pr阾re"
2693
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = inti government = theocracy }
2694
+ }
2695
+ frloc_ruler_masc_cons_1041_inti_theocracy_WILLAQ_UMU = { # "Willaq umu"
2696
+ AND = { government_rank = 3 religion = inti government = theocracy }
2697
+ }
2698
+ frloc_ruler_fem_cons_1041_inti_theocracy_MICHOQ = { # "Michoq"
2699
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion = inti government = theocracy }
2700
+ }
2701
+ frloc_ruler_fem_cons_1041_inti_theocracy_HIGH_PRIESTESS = { # "Grande pr阾resse"
2702
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion = inti government = theocracy }
2703
+ }
2704
+ frloc_ruler_fem_cons_1041_inti_theocracy_WILLAQ_UMU = { # "Willaq umu"
2705
+ AND = { government_rank = 3 religion = inti government = theocracy }
2706
+ }
2707
+ frloc_ruler_masc_cons_1042_pagan_theocracy_PRIEST = { # "Pr阾re"
2708
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = pagan government = theocracy }
2709
+ }
2710
+ frloc_ruler_masc_cons_1042_pagan_theocracy_HIGH_PRIEST = { # "Grand pr阾re"
2711
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = pagan government = theocracy }
2712
+ }
2713
+ frloc_ruler_masc_cons_1042_pagan_theocracy_PARAMOUNT_PRIEST = { # "Pr阾re supr阭e"
2714
+ AND = { government_rank = 3 religion_group = pagan government = theocracy }
2715
+ }
2716
+ frloc_ruler_fem_cons_1042_pagan_theocracy_PRIESTESS = { # "Pr阾resse"
2717
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = pagan government = theocracy }
2718
+ }
2719
+ frloc_ruler_fem_cons_1042_pagan_theocracy_HIGH_PRIESTESS = { # "Grande pr阾resse"
2720
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = pagan government = theocracy }
2721
+ }
2722
+ frloc_ruler_fem_cons_1042_pagan_theocracy_PARAMOUNT_PRIESTESS = { # "Pr阾resse supr阭e"
2723
+ AND = { government_rank = 3 religion_group = pagan government = theocracy }
2724
+ }
2725
+ frloc_ruler_masc_cons_1043_gov_religious_order_GRAND_MASTER = { # "Grand ma顃re"
2726
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
2727
+ }
2728
+ frloc_ruler_masc_vow_1043_gov_religious_order_COMMANDER_EMPEROR = { # "Empereur-commandeur"
2729
+ AND = { government_rank = 3 OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
2730
+ }
2731
+ frloc_ruler_fem_cons_1043_gov_religious_order_GRAND_MISTRESS = { # "Grande ma顃resse"
2732
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
2733
+ }
2734
+ frloc_ruler_fem_vow_1043_gov_religious_order_COMMANDER_EMPRESS = { # "Imp閞atrice-commanderesse"
2735
+ AND = { government_rank = 3 OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
2736
+ }
2737
+ frloc_ruler_masc_cons_1044_sisters_crusader_state_GRAND_MASTER = { # "Grand ma顃re"
2738
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
2739
+ }
2740
+ frloc_ruler_masc_vow_1044_sisters_crusader_state_COMMANDER_EMPEROR = { # "Empereur-commandeur"
2741
+ AND = { government_rank = 3 OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
2742
+ }
2743
+ frloc_ruler_fem_vow_1044_sisters_crusader_state_ABBESS = { # "Abbesse"
2744
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
2745
+ }
2746
+ frloc_ruler_fem_cons_1044_sisters_crusader_state_MOTHER_SUPERIOR = { # "M鑢e sup閞ieure"
2747
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
2748
+ }
2749
+ frloc_ruler_fem_cons_1044_sisters_crusader_state_GRAND_MISTRESS = { # "Grande ma顃resse"
2750
+ AND = { government_rank = 3 OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
2751
+ }
2752
+ frloc_ruler_masc_cons_1045_gov_jarldom_JARL = { # "Jarl"
2753
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2754
+ }
2755
+ frloc_ruler_masc_cons_1045_gov_jarldom_KING = { # "Roi"
2756
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2757
+ }
2758
+ frloc_ruler_masc_vow_1045_gov_jarldom_EMPEROR = { # "Empereur"
2759
+ AND = { government_rank = 3 government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2760
+ }
2761
+ frloc_ruler_fem_cons_1045_gov_jarldom_JARL = { # "Jarl"
2762
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2763
+ }
2764
+ frloc_ruler_fem_cons_1045_gov_jarldom_QUEEN = { # "Reine"
2765
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2766
+ }
2767
+ frloc_ruler_fem_vow_1045_gov_jarldom_EMPRESS = { # "Imp閞atrice"
2768
+ AND = { government_rank = 3 government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
2769
+ }
2770
+
2771
+
2772
+ ### LOWER PRIORITY / PRIORIT?BASSE = zz_default_government_names.txt ###
2773
+
2774
+ frloc_ruler_masc_cons_2001_default_monarchy_DUKE = { # "Duc"
2775
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic }
2776
+ }
2777
+ frloc_ruler_masc_cons_2001_default_monarchy_KING = { # "Roi"
2778
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic }
2779
+ }
2780
+ frloc_ruler_masc_vow_2001_default_monarchy_EMPEROR = { # "Empereur"
2781
+ AND = { government_rank = 3 has_reform = monarchy_mechanic }
2782
+ }
2783
+ frloc_ruler_fem_cons_2001_default_monarchy_DUCHESS = { # "Duchesse"
2784
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic }
2785
+ }
2786
+ frloc_ruler_fem_cons_2001_default_monarchy_QUEEN = { # "Reine"
2787
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic }
2788
+ }
2789
+ frloc_ruler_fem_vow_2001_default_monarchy_EMPRESS = { # "Imp閞atrice"
2790
+ AND = { government_rank = 3 has_reform = monarchy_mechanic }
2791
+ }
2792
+ frloc_ruler_masc_cons_2002_default_republic_CONSUL = { # "Consul"
2793
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic }
2794
+ }
2795
+ frloc_ruler_masc_cons_2002_default_republic_GRAND_CONSUL = { # "Grand consul"
2796
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic }
2797
+ }
2798
+ frloc_ruler_masc_cons_2002_default_republic_GREAT_CONSUL = { # "Consul supr阭e"
2799
+ AND = { government_rank = 3 government = republic }
2800
+ }
2801
+ frloc_ruler_fem_cons_2002_default_republic_CONSULESS = { # "Consule"
2802
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = republic }
2803
+ }
2804
+ frloc_ruler_fem_cons_2002_default_republic_GRAND_CONSULESS = { # "Grande consule"
2805
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = republic }
2806
+ }
2807
+ frloc_ruler_fem_cons_2002_default_republic_GREAT_CONSULESS = { # "Consule supr阭e"
2808
+ AND = { government_rank = 3 government = republic }
2809
+ }
2810
+ frloc_ruler_masc_vow_2003_default_theocracy_BISHOP = { # "蓈阸ue"
2811
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = theocracy }
2812
+ }
2813
+ frloc_ruler_masc_vow_2003_default_theocracy_ARCHBISHOP = { # "Archev阸ue"
2814
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = theocracy }
2815
+ }
2816
+ frloc_ruler_masc_cons_2003_default_theocracy_PATRIARCH = { # "Patriarche"
2817
+ AND = { government_rank = 3 government = theocracy }
2818
+ }
2819
+ frloc_ruler_fem_vow_2003_default_theocracy_BISHOP_fem = { # "蓈阸ue"
2820
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = theocracy }
2821
+ }
2822
+ frloc_ruler_fem_vow_2003_default_theocracy_ARCHBISHOP_fem = { # "Archev阸ue"
2823
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = theocracy }
2824
+ }
2825
+ frloc_ruler_fem_cons_2003_default_theocracy_MATRIARCH = { # "Matriarche"
2826
+ AND = { government_rank = 3 government = theocracy }
2827
+ }
2828
+ frloc_ruler_masc_cons_2004_default_tribal_CHIEF = { # "Chef"
2829
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = tribal }
2830
+ }
2831
+ frloc_ruler_masc_cons_2004_default_tribal_KING = { # "Roi"
2832
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = tribal }
2833
+ }
2834
+ frloc_ruler_masc_vow_2004_default_tribal_EMPEROR = { # "Empereur"
2835
+ AND = { government_rank = 3 government = tribal }
2836
+ }
2837
+ frloc_ruler_fem_cons_2004_default_tribal_CHIEFTESS = { # "Cheffe"
2838
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = tribal }
2839
+ }
2840
+ frloc_ruler_fem_cons_2004_default_tribal_QUEEN = { # "Reine"
2841
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = tribal }
2842
+ }
2843
+ frloc_ruler_fem_vow_2004_default_tribal_EMPRESS = { # "Imp閞atrice"
2844
+ AND = { government_rank = 3 government = tribal }
2845
+ }
2846
+
2847
+
2848
+
2849
+
2850
+ ###########################################################################
2851
+ ### Heir Articles & Titles // Articles et titres pour les h閞itiers ###
2852
+ ###########################################################################
2853
+ # Ex.: _masc_cons_ => LE prince / DU prince / AU prince / CE prince / nouvEAU prince / SON prince / SON nouveau prince / SON ancien prince
2854
+ # Ex.: _masc_vow_ => L'h閞itier / DE L'h閞itier / ?L'h閞itier / CET h閞itier / nouvEL h閞itier / SON h閞itier / SON nouvel h閞itier / SON ancien h閞itier
2855
+ # Ex.: _fem_cons_ => LA princesse / DE LA princesse / ?LA princesse / CETTE princesse / nouvELLE princesse / SA princesse / SA nouvelle princesse / SON ancienne princesse
2856
+ # Ex.: _fem_vow_ => L'h閞iti鑢e / DE L'h閞iti鑢e / ?L'h閞iti鑢e / CETTE h閞iti鑢e / nouvELLE h閞iti鑢e / SON h閞iti鑢e / SA nouvelle h閞iti鑢e / SON ancienne h閞iti鑢e
2857
+
2858
+ ### HIGHER PRIORITY / PRIORIT?HAUTE = 00_government_names.txt ###
2859
+
2860
+ frloc_heir_masc_vow_0000_georgian_HEIR = { # "H閞itier"
2861
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
2862
+ }
2863
+ frloc_heir_masc_cons_0000_georgian_PRINTSI = { # "Prince"
2864
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
2865
+ }
2866
+ frloc_heir_fem_vow_0000_georgian_HEIR_fem = { # "H閞iti鑢e"
2867
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
2868
+ }
2869
+ frloc_heir_fem_cons_0000_georgian_PRINTSESA = { # "Princesse"
2870
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
2871
+ }
2872
+ frloc_heir_masc_vow_0001_stateless_society_HEIR = { # "H閞itier"
2873
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
2874
+ }
2875
+ frloc_heir_fem_vow_0001_stateless_society_HEIR_fem = { # "H閞iti鑢e"
2876
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
2877
+ }
2878
+ frloc_heir_masc_vow_0001a_kongo_tribal_kingdom_HEIR = { # "H閞itier"
2879
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = tribal } }
2880
+ }
2881
+ frloc_heir_fem_vow_0001a_kongo_tribal_kingdom_HEIR_fem = { # "H閞iti鑢e"
2882
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = tribal } }
2883
+ }
2884
+ frloc_heir_masc_vow_0001b_kongo_monarchy_kingdom_HEIR = { # "H閞itier"
2885
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = monarchy } }
2886
+ }
2887
+ frloc_heir_fem_vow_0001b_kongo_monarchy_kingdom_HEIR_fem = { # "H閞iti鑢e"
2888
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = monarchy } }
2889
+ }
2890
+ frloc_heir_masc_vow_0002_islamic_caliphate_HEIR = { # "H閞itier"
2891
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
2892
+ }
2893
+ frloc_heir_fem_vow_0002_islamic_caliphate_HEIR_fem = { # "H閞iti鑢e"
2894
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
2895
+ }
2896
+ frloc_heir_masc_cons_0011_gov_german_empire_KRONPRINZ = { # "Kronprinz"
2897
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
2898
+ }
2899
+ frloc_heir_fem_cons_0011_gov_german_empire_KRONPRINZEN = { # "Kronprinzessin"
2900
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
2901
+ }
2902
+ frloc_heir_masc_vow_0022_yuan_empire_HEIR = { # "H閞itier"
2903
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
2904
+ }
2905
+ frloc_heir_masc_cons_0022_yuan_empire_KHANZADEH = { # "Kh鈔z鈊eh"
2906
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
2907
+ }
2908
+ frloc_heir_fem_cons_0022_yuan_empire_KHANUM = { # "Khanoum"
2909
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
2910
+ }
2911
+ frloc_heir_fem_cons_0023_ilkhanate_march_KHANZADEH = { # "Kh鈔z鈊eh"
2912
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
2913
+ }
2914
+ frloc_heir_fem_cons_0023_ilkhanate_march_KHANUM = { # "Khanoum"
2915
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
2916
+ }
2917
+ frloc_heir_masc_vow_0024_celestial_parliament_HEIR = { # "H閞itier"
2918
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
2919
+ }
2920
+ frloc_heir_fem_vow_0024_celestial_parliament_HEIR_fem = { # "H閞iti鑢e"
2921
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
2922
+ }
2923
+ frloc_heir_masc_cons_0025_ottoman_marches_PASHAZADE = { # "Pachazad?
2924
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
2925
+ }
2926
+ frloc_heir_fem_cons_0025_ottoman_marches_PASHAZADE = { # "Pachazad?
2927
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
2928
+ }
2929
+ frloc_heir_masc_cons_0026_ottoman_vassals_BEYSADE = { # "Beyzad?
2930
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
2931
+ }
2932
+ frloc_heir_fem_cons_0026_ottoman_vassals_BEYSADI = { # "Beyzad?
2933
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
2934
+ }
2935
+ frloc_heir_masc_vow_0026b_ottoman_eyalets_HEIR = { # "H閞itier"
2936
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
2937
+ }
2938
+ frloc_heir_fem_vow_0026b_ottoman_eyalets_HEIR_fem = { # "H閞iti鑢e"
2939
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
2940
+ }
2941
+ frloc_heir_masc_vow_0026c_ottoman_barbary_eyalets_HEIR = { # "H閞itier"
2942
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
2943
+ }
2944
+ frloc_heir_fem_vow_0026c_ottoman_barbary_eyalets_HEIR_fem = { # "H閞iti鑢e"
2945
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
2946
+ }
2947
+ frloc_heir_masc_vow_0027_march_christian_monarchy_HEIR = { # "H閞itier"
2948
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
2949
+ }
2950
+ frloc_heir_fem_vow_0027_march_christian_monarchy_HEIR_fem = { # "H閞iti鑢e"
2951
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
2952
+ }
2953
+ frloc_heir_masc_vow_0028_gov_papal_government_elector_HEIR = { # "H閞itier"
2954
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform is_elector = yes }
2955
+ }
2956
+ frloc_heir_fem_vow_0028_gov_papal_government_elector_HEIR_fem = { # "H閞iti鑢e"
2957
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform is_elector = yes }
2958
+ }
2959
+ frloc_heir_masc_vow_0029_palatine_electorate_HEIR = { # "H閞itier"
2960
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
2961
+ }
2962
+ frloc_heir_fem_vow_0029_palatine_electorate_HEIR_fem = { # "H閞iti鑢e"
2963
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
2964
+ }
2965
+ frloc_heir_masc_vow_0030_palatine_monarchy_HEIR = { # "H閞itier"
2966
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = PAL }
2967
+ }
2968
+ frloc_heir_fem_vow_0030_palatine_monarchy_HEIR_fem = { # "H閞iti鑢e"
2969
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = PAL }
2970
+ }
2971
+ frloc_heir_masc_vow_0031_herzegovina_monarchy_HEIR = { # "H閞itier"
2972
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy tag = HRZ }
2973
+ }
2974
+ frloc_heir_fem_vow_0031_herzegovina_monarchy_HEIR_fem = { # "H閞iti鑢e"
2975
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy tag = HRZ }
2976
+ }
2977
+ frloc_heir_masc_vow_0032_holy_roman_electors_monarchy_HEIR = { # "H閞itier"
2978
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
2979
+ }
2980
+ frloc_heir_fem_vow_0032_holy_roman_electors_monarchy_HEIR_fem = { # "H閞iti鑢e"
2981
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
2982
+ }
2983
+ frloc_heir_masc_vow_0033_holy_roman_electors_bishoprics_HEIR = { # "H閞itier"
2984
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = theocracy is_elector = yes is_emperor = no }
2985
+ }
2986
+ frloc_heir_fem_vow_0033_holy_roman_electors_bishoprics_HEIR_fem = { # "H閞iti鑢e"
2987
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = theocracy is_elector = yes is_emperor = no }
2988
+ }
2989
+ frloc_heir_masc_vow_0035_japanese_shogunate_HEIR = { # "H閞itier"
2990
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
2991
+ }
2992
+ frloc_heir_fem_vow_0035_japanese_shogunate_HEIR_fem = { # "H閞iti鑢e"
2993
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
2994
+ }
2995
+ frloc_heir_masc_vow_0036_islamic_syncretism_kingdoms_HEIR = { # "H閞itier"
2996
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
2997
+ }
2998
+ frloc_heir_fem_vow_0036_islamic_syncretism_kingdoms_HEIR_fem = { # "H閞iti鑢e"
2999
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
3000
+ }
3001
+ frloc_heir_masc_cons_0037_french_kingdom_DAUPHIN = { # "Dauphin"
3002
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
3003
+ }
3004
+ frloc_heir_fem_cons_0037_french_kingdom_DAUPHINE = { # "Dauphine"
3005
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
3006
+ }
3007
+ frloc_heir_masc_cons_0038_sharifs_of_mecca_SHARIFZADE = { # "Ch閞ifzade"
3008
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
3009
+ }
3010
+ frloc_heir_fem_cons_0038_sharifs_of_mecca_SHARIFZADE = { # "Ch閞ifzade"
3011
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
3012
+ }
3013
+ frloc_heir_masc_vow_0039_avar_nutsals_HEIR = { # "H閞itier"
3014
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = AVR government = monarchy }
3015
+ }
3016
+ frloc_heir_fem_vow_0039_avar_nutsals_HEIR_fem = { # "H閞iti鑢e"
3017
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = AVR government = monarchy }
3018
+ }
3019
+ #frloc_heir_masc_vow_0040_georgian_monarchy_HEIR = { # "H閞itier"
3020
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
3021
+ #}
3022
+ #frloc_heir_masc_cons_0040_georgian_monarchy_PRINCE = { # "Prince"
3023
+ # AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy primary_culture = georgian }
3024
+ #}
3025
+ #frloc_heir_fem_vow_0040_georgian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3026
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
3027
+ #}
3028
+ #frloc_heir_fem_cons_0040_georgian_monarchy_PRINCESS = { # "Princesse"
3029
+ # AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy primary_culture = georgian }
3030
+ #}
3031
+ frloc_heir_masc_vow_0041_dais_of_najran_HEIR = { # "H閞itier"
3032
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = muslim tag = NJR }
3033
+ }
3034
+ frloc_heir_fem_vow_0041_dais_of_najran_HEIR_fem = { # "H閞iti鑢e"
3035
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = muslim tag = NJR }
3036
+ }
3037
+ frloc_heir_masc_vow_0042_malian_monarchy_HEIR = { # "H閞itier"
3038
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = MAL }
3039
+ }
3040
+ frloc_heir_fem_vow_0042_malian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3041
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = MAL }
3042
+ }
3043
+ frloc_heir_masc_cons_0043_arabic_tribal_MALIK = { # "M鈒ik"
3044
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3045
+ }
3046
+ frloc_heir_masc_vow_0043_arabic_tribal_AMIRZADE = { # "Amirz鈊eh"
3047
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3048
+ }
3049
+ frloc_heir_masc_cons_0043_arabic_tribal_SHAHZADE = { # "Sh鈎z鈊eh"
3050
+ AND = { government_rank = 3 religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3051
+ }
3052
+ frloc_heir_fem_cons_0043_arabic_tribal_MALIKAH = { # "M鈒ika"
3053
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3054
+ }
3055
+ frloc_heir_fem_vow_0043_arabic_tribal_AMIRZADE = { # "Amirz鈊eh"
3056
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3057
+ }
3058
+ frloc_heir_fem_cons_0043_arabic_tribal_SHAHZADE = { # "Sh鈎z鈊eh"
3059
+ AND = { government_rank = 3 religion_group = muslim primary_culture = bedouin_arabic government = tribal }
3060
+ }
3061
+ frloc_heir_masc_cons_0044_muslim_tribal_MALIK = { # "M鈒ik"
3062
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
3063
+ }
3064
+ frloc_heir_masc_cons_0044_muslim_tribal_SHAHZADE = { # "Sh鈎z鈊eh"
3065
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
3066
+ }
3067
+ frloc_heir_fem_cons_0044_muslim_tribal_MALIKAH = { # "M鈒ika"
3068
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
3069
+ }
3070
+ frloc_heir_fem_cons_0044_muslim_tribal_SHAHZADE = { # "Sh鈎z鈊eh"
3071
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
3072
+ }
3073
+ frloc_heir_masc_vow_0045_kathiawar_tribal_monarchy_HEIR = { # "H閞itier"
3074
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
3075
+ }
3076
+ frloc_heir_fem_vow_0045_kathiawar_tribal_monarchy_HEIR_fem = { # "H閞iti鑢e"
3077
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
3078
+ }
3079
+ frloc_heir_masc_cons_0046_sistan_monarchy_MIRZA = { # "M顁z?
3080
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
3081
+ }
3082
+ frloc_heir_masc_cons_0046_sistan_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3083
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy tag = SIS }
3084
+ }
3085
+ frloc_heir_fem_cons_0046_sistan_monarchy_SHEIKHA = { # "Cheikha"
3086
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
3087
+ }
3088
+ frloc_heir_fem_cons_0046_sistan_monarchy_SHAHDOKHT = { # "Sh鈎dokht"
3089
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy tag = SIS }
3090
+ }
3091
+ frloc_heir_masc_vow_0046b_turcoman_persian_monarchy_HEIR = { # "H閞itier"
3092
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
3093
+ }
3094
+ frloc_heir_masc_cons_0046b_turcoman_persian_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3095
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
3096
+ }
3097
+ frloc_heir_fem_cons_0046b_turcoman_persian_monarchy_SHEIKHA = { # "Cheikha"
3098
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
3099
+ }
3100
+ frloc_heir_fem_cons_0046b_turcoman_persian_monarchy_SHAHDOKHT = { # "Sh鈎dokht"
3101
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
3102
+ }
3103
+ frloc_heir_masc_vow_0047_persian_monarchy_HEIR = { # "H閞itier"
3104
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
3105
+ }
3106
+ frloc_heir_masc_cons_0047_persian_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3107
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy culture_group = iranian }
3108
+ }
3109
+ frloc_heir_fem_cons_0047_persian_monarchy_SHEIKHA = { # "Cheikha"
3110
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
3111
+ }
3112
+ frloc_heir_fem_cons_0047_persian_monarchy_SHAHDOKHT = { # "Sh鈎dokht"
3113
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy culture_group = iranian }
3114
+ }
3115
+ frloc_heir_masc_vow_0048_somali_monarchy_AMIR = { # "Amir"
3116
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = somali }
3117
+ }
3118
+ frloc_heir_fem_vow_0048_somali_monarchy_AMIRAD = { # "Amirad"
3119
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = somali }
3120
+ }
3121
+ frloc_heir_masc_vow_0049_lithuanian_monarchy_HEIR = { # "H閞itier"
3122
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = LIT government = monarchy }
3123
+ }
3124
+ frloc_heir_fem_vow_0049_lithuanian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3125
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = LIT government = monarchy }
3126
+ }
3127
+ frloc_heir_masc_vow_0050_cristopher_of_bavaria_monarchy_HEIR = { # "H閞itier"
3128
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
3129
+ }
3130
+ frloc_heir_fem_vow_0050_cristopher_of_bavaria_monarchy_HEIR_fem = { # "H閞iti鑢e"
3131
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
3132
+ }
3133
+ frloc_heir_masc_vow_0051_hunyadi_regent_monarchy_HEIR = { # "H閞itier"
3134
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
3135
+ }
3136
+ frloc_heir_fem_vow_0051_hunyadi_regent_monarchy_HEIR_fem = { # "H閞iti鑢e"
3137
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
3138
+ }
3139
+ frloc_heir_masc_vow_0052_austrian_monarchy_HEIR = { # "H閞itier"
3140
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = HAB government = monarchy }
3141
+ }
3142
+ frloc_heir_fem_vow_0052_austrian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3143
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = HAB government = monarchy }
3144
+ }
3145
+ frloc_heir_masc_cons_0053_turkish_monarchy_VALI_AHAD = { # "Vali ahad"
3146
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = turkish }
3147
+ }
3148
+ frloc_heir_fem_cons_0053_turkish_monarchy_VALI_AHAD = { # "Vali ahad"
3149
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = turkish }
3150
+ }
3151
+ frloc_heir_masc_vow_0054_theodoro_monarchy_HEIR = { # "H閞itier"
3152
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = FEO }
3153
+ }
3154
+ frloc_heir_fem_vow_0054_theodoro_monarchy_HEIR_fem = { # "H閞iti鑢e"
3155
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = FEO }
3156
+ }
3157
+ frloc_heir_masc_vow_0055_croatian_monarchy_HEIR = { # "H閞itier"
3158
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
3159
+ }
3160
+ frloc_heir_fem_vow_0055_croatian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3161
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
3162
+ }
3163
+ frloc_heir_masc_vow_0056_finnish_monarchy_HEIR = { # "H閞itier"
3164
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = finnish }
3165
+ }
3166
+ frloc_heir_fem_vow_0056_finnish_monarchy_HEIR_fem = { # "H閞iti鑢e"
3167
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = finnish }
3168
+ }
3169
+ frloc_heir_masc_vow_0057_grand_duchy_of_tuscany_HEIR = { # "H閞itier"
3170
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = TUS }
3171
+ }
3172
+ frloc_heir_fem_vow_0057_grand_duchy_of_tuscany_HEIR_fem = { # "H閞iti鑢e"
3173
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = TUS }
3174
+ }
3175
+ frloc_heir_masc_vow_0058_grand_duchy_of_baden_HEIR = { # "H閞itier"
3176
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
3177
+ }
3178
+ frloc_heir_fem_vow_0058_grand_duchy_of_baden_HEIR_fem = { # "H閞iti鑢e"
3179
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
3180
+ }
3181
+ frloc_heir_masc_vow_0059_grand_duchy_of_luxembourg_HEIR = { # "H閞itier"
3182
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
3183
+ }
3184
+ frloc_heir_fem_vow_0059_grand_duchy_of_luxembourg_HEIR_fem = { # "H閞iti鑢e"
3185
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
3186
+ }
3187
+ frloc_heir_masc_vow_0060_serbian_feudal_monarchy_HEIR = { # "H閞itier"
3188
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
3189
+ }
3190
+ frloc_heir_fem_vow_0060_serbian_feudal_monarchy_HEIR_fem = { # "H閞iti鑢e"
3191
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
3192
+ }
3193
+ frloc_heir_masc_vow_0061_serbian_monarchy_HEIR = { # "H閞itier"
3194
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
3195
+ }
3196
+ frloc_heir_fem_vow_0061_serbian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3197
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
3198
+ }
3199
+ frloc_heir_masc_cons_0062_byzantine_monarchy_PRINCE = { # "Prince"
3200
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3201
+ }
3202
+ frloc_heir_masc_cons_0062_byzantine_monarchy_DESPOT = { # "Despote"
3203
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3204
+ }
3205
+ frloc_heir_masc_cons_0062_byzantine_monarchy_SYMBASILEUS = { # "Symbasileus"
3206
+ AND = { government_rank = 3 government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3207
+ }
3208
+ frloc_heir_fem_cons_0062_byzantine_monarchy_PRINCESS = { # "Princesse"
3209
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3210
+ }
3211
+ frloc_heir_fem_cons_0062_byzantine_monarchy_DESPOTISSA = { # "Despote"
3212
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3213
+ }
3214
+ frloc_heir_fem_cons_0062_byzantine_monarchy_SYMBASILISSA = { # "Symbasilissa"
3215
+ AND = { government_rank = 3 government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
3216
+ }
3217
+ frloc_heir_masc_vow_0063_greek_monarchy_HEIR = { # "H閞itier"
3218
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
3219
+ }
3220
+ frloc_heir_fem_vow_0063_greek_monarchy_HEIR_fem = { # "H閞iti鑢e"
3221
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
3222
+ }
3223
+ frloc_heir_masc_vow_0064_arakanese_monarchy_HEIR = { # "H閞itier"
3224
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ARK }
3225
+ }
3226
+ frloc_heir_fem_vow_0064_arakanese_monarchy_HEIR_fem = { # "H閞iti鑢e"
3227
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ARK }
3228
+ }
3229
+ frloc_heir_masc_vow_0065_pangasinan_monarchy_HEIR = { # "H閞itier"
3230
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
3231
+ }
3232
+ frloc_heir_fem_vow_0065_pangasinan_monarchy_HEIR_fem = { # "H閞iti鑢e"
3233
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
3234
+ }
3235
+ frloc_heir_masc_vow_0066_albanian_monarchy_HEIR = { # "H閞itier"
3236
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ALB }
3237
+ }
3238
+ frloc_heir_fem_vow_0066_albanian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3239
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ALB }
3240
+ }
3241
+ frloc_heir_masc_vow_0067_qing_monarchy_HEIR = { # "H閞itier"
3242
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = QNG }
3243
+ }
3244
+ frloc_heir_fem_vow_0067_qing_monarchy_HEIR_fem = { # "H閞iti鑢e"
3245
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = QNG }
3246
+ }
3247
+ frloc_heir_masc_vow_0068_egyptian_monarchy_HEIR = { # "H閞itier"
3248
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
3249
+ }
3250
+ frloc_heir_fem_vow_0068_egyptian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3251
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
3252
+ }
3253
+ frloc_heir_masc_vow_0070_pagan_egyptian_monarchy_HEIR = { # "H閞itier"
3254
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
3255
+ }
3256
+ frloc_heir_fem_vow_0070_pagan_egyptian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3257
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
3258
+ }
3259
+ frloc_heir_masc_vow_0071_pagan_greek_monarchy_HEIR = { # "H閞itier"
3260
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
3261
+ }
3262
+ frloc_heir_fem_vow_0071_pagan_greek_monarchy_HEIR_fem = { # "H閞iti鑢e"
3263
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
3264
+ }
3265
+ frloc_heir_masc_vow_0072_pagan_roman_monarchy_HEIR = { # "H閞itier"
3266
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
3267
+ }
3268
+ frloc_heir_fem_vow_0072_pagan_roman_monarchy_HEIR_fem = { # "H閞iti鑢e"
3269
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
3270
+ }
3271
+ frloc_heir_masc_vow_0073_jurchen_monarchy_HEIR = { # "H閞itier"
3272
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
3273
+ }
3274
+ frloc_heir_fem_vow_0073_jurchen_monarchy_HEIR_fem = { # "H閞iti鑢e"
3275
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
3276
+ }
3277
+ frloc_heir_masc_vow_0074_romanian_monarchy_HEIR = { # "H閞itier"
3278
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = romanian }
3279
+ }
3280
+ frloc_heir_fem_vow_0074_romanian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3281
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = romanian }
3282
+ }
3283
+ frloc_heir_masc_cons_0075_hyderabad_state_monarchy_NAWABZADA = { # "Nawabz鈊a"
3284
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
3285
+ }
3286
+ frloc_heir_masc_cons_0075_hyderabad_state_monarchy_NIZAMZADA = { # "Nizamz鈊a"
3287
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
3288
+ }
3289
+ frloc_heir_masc_cons_0075_hyderabad_state_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3290
+ AND = { government_rank = 3 government = monarchy tag = DEC }
3291
+ }
3292
+ frloc_heir_fem_cons_0075_hyderabad_state_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
3293
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
3294
+ }
3295
+ frloc_heir_fem_cons_0075_hyderabad_state_monarchy_NIZAM_BEGUM = { # "Niz鈓 beg黰"
3296
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
3297
+ }
3298
+ frloc_heir_fem_cons_0075_hyderabad_state_monarchy_PADISHAH_BEGUM = { # "Padish鈎 beg黰"
3299
+ AND = { government_rank = 3 government = monarchy tag = DEC }
3300
+ }
3301
+ frloc_heir_masc_cons_0076_muslim_indian_monarchy_NAWABZADA = { # "Nawabz鈊a"
3302
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3303
+ }
3304
+ frloc_heir_masc_cons_0076_muslim_indian_monarchy_MIRZA = { # "M顁z?
3305
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3306
+ }
3307
+ frloc_heir_masc_cons_0076_muslim_indian_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3308
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3309
+ }
3310
+ frloc_heir_fem_cons_0076_muslim_indian_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
3311
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3312
+ }
3313
+ frloc_heir_fem_cons_0076_muslim_indian_monarchy_NIZAM_BEGUM = { # "Niz鈓 beg黰"
3314
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3315
+ }
3316
+ frloc_heir_fem_cons_0076_muslim_indian_monarchy_PADISHAH_BEGUM = { # "Padish鈎 beg黰"
3317
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
3318
+ }
3319
+ frloc_heir_masc_cons_0077_bharat_monarchy_RAJKUMAR = { # "R鈐kumar"
3320
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BHA }
3321
+ }
3322
+ frloc_heir_fem_cons_0077_bharat_monarchy_RAJKUMARI = { # "R鈐kumari"
3323
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BHA }
3324
+ }
3325
+ frloc_heir_masc_cons_0078_hindu_rajput_monarchy_RAJKUMAR = { # "R鈐kumar"
3326
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
3327
+ }
3328
+ frloc_heir_fem_cons_0078_hindu_rajput_monarchy_RAJKUMARI = { # "R鈐kumari"
3329
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
3330
+ }
3331
+ frloc_heir_masc_cons_0079_maratha_peshwas_RAJKUMAR = { # "R鈐kumar"
3332
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
3333
+ }
3334
+ frloc_heir_fem_cons_0079_maratha_peshwas_RAJKUMARI = { # "R鈐kumari"
3335
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
3336
+ }
3337
+ frloc_heir_masc_cons_0080_hindu_maratha_monarchy_RAJKUMAR = { # "R鈐kumar"
3338
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
3339
+ }
3340
+ frloc_heir_fem_cons_0080_hindu_maratha_monarchy_RAJKUMARI = { # "R鈐kumari"
3341
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
3342
+ }
3343
+ frloc_heir_masc_vow_0081_kaffa_monarchy_HEIR = { # "H閞itier"
3344
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = KAF }
3345
+ }
3346
+ frloc_heir_fem_vow_0081_kaffa_monarchy_HEIR_fem = { # "H閞iti鑢e"
3347
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = KAF }
3348
+ }
3349
+ frloc_heir_masc_vow_0082_ethiopian_monarchies_ABETO = { # "Abeto"
3350
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
3351
+ }
3352
+ frloc_heir_fem_cons_0082_ethiopian_monarchies_LE_ELT = { # "Le'elt"
3353
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
3354
+ }
3355
+ frloc_heir_masc_vow_0083_nkore_monarchy_HEIR = { # "H閞itier"
3356
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = NKO }
3357
+ }
3358
+ frloc_heir_fem_vow_0083_nkore_monarchy_HEIR_fem = { # "H閞iti鑢e"
3359
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = NKO }
3360
+ }
3361
+ frloc_heir_masc_vow_0084_bunyoro_monarchy_HEIR = { # "H閞itier"
3362
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BNY }
3363
+ }
3364
+ frloc_heir_fem_vow_0084_bunyoro_monarchy_HEIR_fem = { # "H閞iti鑢e"
3365
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BNY }
3366
+ }
3367
+ frloc_heir_masc_vow_0085_lunda_monarchy_HEIR = { # "H閞itier"
3368
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
3369
+ }
3370
+ frloc_heir_fem_vow_0085_lunda_monarchy_HEIR_fem = { # "H閞iti鑢e"
3371
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
3372
+ }
3373
+ frloc_heir_masc_vow_0086_mutapa_monarchy_HEIR = { # "H閞itier"
3374
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ZIM }
3375
+ }
3376
+ frloc_heir_fem_vow_0086_mutapa_monarchy_HEIR_fem = { # "H閞iti鑢e"
3377
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ZIM }
3378
+ }
3379
+ frloc_heir_masc_vow_0087_torwa_monarchy_HEIR = { # "H閞itier"
3380
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = RZW }
3381
+ }
3382
+ frloc_heir_fem_vow_0087_torwa_monarchy_HEIR_fem = { # "H閞iti鑢e"
3383
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = RZW }
3384
+ }
3385
+ frloc_heir_masc_vow_0088_rwanda_burundi_monarchy_HEIR = { # "H閞itier"
3386
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = rwandan }
3387
+ }
3388
+ frloc_heir_fem_vow_0088_rwanda_burundi_monarchy_HEIR_fem = { # "H閞iti鑢e"
3389
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = rwandan }
3390
+ }
3391
+ frloc_heir_masc_vow_0089_ganda_monarchy_HEIR = { # "H閞itier"
3392
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = ganda }
3393
+ }
3394
+ frloc_heir_fem_vow_0089_ganda_monarchy_HEIR_fem = { # "H閞iti鑢e"
3395
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = ganda }
3396
+ }
3397
+ frloc_heir_masc_vow_0090_antemoro_monarchy_HEIR = { # "H閞itier"
3398
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ANT }
3399
+ }
3400
+ frloc_heir_fem_vow_0090_antemoro_monarchy_HEIR_fem = { # "H閞iti鑢e"
3401
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = ANT }
3402
+ }
3403
+ frloc_heir_masc_vow_0091_betsimisaraka_monarchy_HEIR = { # "H閞itier"
3404
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BTS }
3405
+ }
3406
+ frloc_heir_fem_vow_0091_betsimisaraka_monarchy_HEIR_fem = { # "H閞iti鑢e"
3407
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = BTS }
3408
+ }
3409
+ frloc_heir_masc_vow_0092_filipino_rajanate_HEIR = { # "H閞itier"
3410
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
3411
+ }
3412
+ frloc_heir_fem_vow_0092_filipino_rajanate_HEIR_fem = { # "H閞iti鑢e"
3413
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
3414
+ }
3415
+ frloc_heir_masc_vow_0093_shan_monarchy_HEIR = { # "H閞itier"
3416
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = shan }
3417
+ }
3418
+ frloc_heir_fem_vow_0093_shan_monarchy_HEIR_fem = { # "H閞iti鑢e"
3419
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = shan }
3420
+ }
3421
+ frloc_heir_masc_vow_0094_burman_monarchy_HEIR = { # "H閞itier"
3422
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = burman }
3423
+ }
3424
+ frloc_heir_fem_vow_0094_burman_monarchy_HEIR_fem = { # "H閞iti鑢e"
3425
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = burman }
3426
+ }
3427
+ frloc_heir_masc_vow_0095_barangay_polity_HEIR = { # "H閞itier"
3428
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
3429
+ }
3430
+ frloc_heir_fem_vow_0095_barangay_polity_HEIR_fem = { # "H閞iti鑢e"
3431
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
3432
+ }
3433
+ frloc_heir_masc_vow_0096_south_slavic_monarchy_HEIR = { # "H閞itier"
3434
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
3435
+ }
3436
+ frloc_heir_fem_vow_0096_south_slavic_monarchy_HEIR_fem = { # "H閞iti鑢e"
3437
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
3438
+ }
3439
+ frloc_heir_masc_vow_0097_irish_peerage_monarchy_HEIR = { # "H閞itier"
3440
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
3441
+ }
3442
+ frloc_heir_fem_vow_0097_irish_peerage_monarchy_HEIR_fem = { # "H閞iti鑢e"
3443
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
3444
+ }
3445
+ frloc_heir_masc_vow_0098_irish_clan_monarchy_HEIR = { # "H閞itier"
3446
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = irish }
3447
+ }
3448
+ frloc_heir_fem_vow_0098_irish_clan_monarchy_HEIR_fem = { # "H閞iti鑢e"
3449
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = irish }
3450
+ }
3451
+ frloc_heir_masc_vow_0099_hebridean_monarchy_HEIR = { # "H閞itier"
3452
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = highland_scottish }
3453
+ }
3454
+ frloc_heir_fem_vow_0099_hebridean_monarchy_HEIR_fem = { # "H閞iti鑢e"
3455
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = highland_scottish }
3456
+ }
3457
+ frloc_heir_masc_cons_0100_muscovite_monarchy_KNIAZHICH = { # "Kniajitch"
3458
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
3459
+ }
3460
+ frloc_heir_masc_cons_0100_muscovite_monarchy_TSAREVICH = { # "Tsar関itch"
3461
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
3462
+ }
3463
+ frloc_heir_fem_cons_0100_muscovite_monarchy_KNIAZHNA = { # "Kniajna"
3464
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
3465
+ }
3466
+ frloc_heir_fem_cons_0100_muscovite_monarchy_TSAREVNA = { # "Tsarevna"
3467
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
3468
+ }
3469
+ frloc_heir_masc_cons_0101_russian_monarchy_KNIAZHICH = { # "Kniajitch"
3470
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
3471
+ }
3472
+ frloc_heir_masc_cons_0101_russian_monarchy_TSAREVICH = { # "Tsar関itch"
3473
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
3474
+ }
3475
+ frloc_heir_fem_cons_0101_russian_monarchy_KNIAZHNA = { # "Kniajna"
3476
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
3477
+ }
3478
+ frloc_heir_fem_cons_0101_russian_monarchy_TSAREVNA = { # "Tsarevna"
3479
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
3480
+ }
3481
+ frloc_heir_masc_cons_0102_russian_feudal_monarchy_KNIAZHICH = { # "Kniajitch"
3482
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
3483
+ }
3484
+ frloc_heir_masc_cons_0102_russian_feudal_monarchy_PRINCE = { # "Prince"
3485
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
3486
+ }
3487
+ frloc_heir_fem_cons_0102_russian_feudal_monarchy_KNIAZHNA = { # "Kniajna"
3488
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
3489
+ }
3490
+ frloc_heir_fem_cons_0102_russian_feudal_monarchy_PRINCESS = { # "Princesse"
3491
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
3492
+ }
3493
+ frloc_heir_masc_vow_0103_inti_monarchy_HEIR = { # "H閞itier"
3494
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion = inti }
3495
+ }
3496
+ frloc_heir_fem_vow_0103_inti_monarchy_HEIR_fem = { # "H閞iti鑢e"
3497
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion = inti }
3498
+ }
3499
+ frloc_heir_masc_vow_0104_mayan_monarchy_HEIR = { # "H閞itier"
3500
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
3501
+ }
3502
+ frloc_heir_fem_vow_0104_mayan_monarchy_HEIR_fem = { # "H閞iti鑢e"
3503
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
3504
+ }
3505
+ frloc_heir_masc_vow_0105_nahuatl_monarchy_HEIR = { # "H閞itier"
3506
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
3507
+ }
3508
+ frloc_heir_fem_vow_0105_nahuatl_monarchy_HEIR_fem = { # "H閞iti鑢e"
3509
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
3510
+ }
3511
+ frloc_heir_masc_vow_0106_chinese_monarchy_HEIR = { # "H閞itier"
3512
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = east_asian }
3513
+ }
3514
+ frloc_heir_fem_vow_0106_chinese_monarchy_HEIR_fem = { # "H閞iti鑢e"
3515
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = east_asian }
3516
+ }
3517
+ frloc_heir_masc_cons_0107_hindu_monarchy_RAJKUMAR = { # "R鈐kumar"
3518
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion = hinduism }
3519
+ }
3520
+ frloc_heir_fem_cons_0107_hindu_monarchy_RAJKUMARI = { # "R鈐kumari"
3521
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion = hinduism }
3522
+ }
3523
+ frloc_heir_masc_vow_0108_buddhist_monarchy_HEIR = { # "H閞itier"
3524
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
3525
+ }
3526
+ frloc_heir_fem_vow_0108_buddhist_monarchy_HEIR_fem = { # "H閞iti鑢e"
3527
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
3528
+ }
3529
+ frloc_heir_masc_vow_0109_muslim_monarchy_HEIR = { # "H閞itier"
3530
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
3531
+ }
3532
+ frloc_heir_masc_cons_0109_muslim_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3533
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
3534
+ }
3535
+ frloc_heir_fem_vow_0109_muslim_monarchy_HEIR_fem = { # "H閞iti鑢e"
3536
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
3537
+ }
3538
+ frloc_heir_fem_cons_0109_muslim_monarchy_SHAHZADE = { # "Sh鈎z鈊eh"
3539
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
3540
+ }
3541
+ frloc_heir_masc_vow_0126_march_eastern_christian_monarchy_HEIR = { # "H閞itier"
3542
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
3543
+ }
3544
+ frloc_heir_fem_vow_0126_march_eastern_christian_monarchy_HEIR_fem = { # "H閞iti鑢e"
3545
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
3546
+ }
3547
+ frloc_heir_masc_vow_0127_gov_holy_horde_HEIR = { # "H閞itier"
3548
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
3549
+ }
3550
+ frloc_heir_fem_vow_0127_gov_holy_horde_HEIR_fem = { # "H閞iti鑢e"
3551
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = holy_horde_reform has_reform = crusading_kingdom_reform has_reform = militarized_crusader_order_reform } }
3552
+ }
3553
+ frloc_heir_masc_vow_0127b_gov_japanese_divine_empire_OUJI = { # "詊i"
3554
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
3555
+ }
3556
+ frloc_heir_fem_vow_0127b_gov_japanese_divine_empire_OUJO = { # "詊o"
3557
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
3558
+ }
3559
+
3560
+
3561
+ ### MIDDLE PRIORITY / PRIORIT?INTERM蒁IAIRE = 01_government_names.txt ###
3562
+
3563
+ frloc_heir_masc_vow_1001_gov_steppe_horde_HEIR = { # "H閞itier"
3564
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
3565
+ }
3566
+ frloc_heir_masc_cons_1001_gov_steppe_horde_KHANZADEH = { # "Kh鈔z鈊eh"
3567
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
3568
+ }
3569
+ frloc_heir_fem_cons_1001_gov_steppe_horde_KHANUM = { # "Khanoum"
3570
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
3571
+ }
3572
+ frloc_heir_masc_vow_1002_gov_native_council_HEIR = { # "H閞itier"
3573
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
3574
+ }
3575
+ frloc_heir_fem_vow_1002_gov_native_council_HEIR_fem = { # "H閞iti鑢e"
3576
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
3577
+ }
3578
+ frloc_heir_masc_vow_1010_gov_papal_government_HEIR = { # "H閞itier"
3579
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform }
3580
+ }
3581
+ frloc_heir_fem_vow_1010_gov_papal_government_HEIR_fem = { # "H閞iti鑢e"
3582
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = papacy_reform }
3583
+ }
3584
+ frloc_heir_masc_vow_1011_gov_daimyo_HEIR = { # "H閞itier"
3585
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
3586
+ }
3587
+ frloc_heir_fem_vow_1011_gov_daimyo_HEIR_fem = { # "H閞iti鑢e"
3588
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
3589
+ }
3590
+ frloc_heir_masc_vow_1011b_gov_appanage_HEIR = { # "H閞itier"
3591
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
3592
+ }
3593
+ frloc_heir_fem_vow_1011b_gov_appanage_HEIR_fem = { # "H閞iti鑢e"
3594
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
3595
+ }
3596
+ frloc_heir_masc_vow_1012_gov_indep_daimyo_HEIR = { # "H閞itier"
3597
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
3598
+ }
3599
+ frloc_heir_fem_vow_1012_gov_indep_daimyo_HEIR_fem = { # "H閞iti鑢e"
3600
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
3601
+ }
3602
+ frloc_heir_masc_vow_1013_gov_shogunate_HEIR = { # "H閞itier"
3603
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
3604
+ }
3605
+ frloc_heir_fem_vow_1013_gov_shogunate_HEIR_fem = { # "H閞iti鑢e"
3606
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
3607
+ }
3608
+ frloc_heir_masc_vow_1014_gov_tribal_kingdom_HEIR = { # "H閞itier"
3609
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = tribal_kingdom }
3610
+ }
3611
+ frloc_heir_fem_vow_1014_gov_tribal_kingdom_HEIR_fem = { # "H閞iti鑢e"
3612
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = tribal_kingdom }
3613
+ }
3614
+ frloc_heir_masc_vow_1015_gov_tribal_HEIR = { # "H閞itier"
3615
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
3616
+ }
3617
+ frloc_heir_fem_vow_1015_gov_tribal_HEIR_fem = { # "H閞iti鑢e"
3618
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
3619
+ }
3620
+ frloc_heir_masc_vow_1018_hre_county_HEIR = { # "H閞itier"
3621
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
3622
+ }
3623
+ frloc_heir_fem_vow_1018_hre_county_HEIR_fem = { # "H閞iti鑢e"
3624
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
3625
+ }
3626
+ frloc_heir_masc_vow_1020_ikko_ikki_temple_HEIR = { # "H閞itier"
3627
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
3628
+ }
3629
+ frloc_heir_fem_vow_1020_ikko_ikki_temple_HEIR_fem = { # "H閞iti鑢e"
3630
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = ikko_ikki_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
3631
+ }
3632
+ frloc_heir_masc_vow_1021_asian_monastic_order_HEIR = { # "H閞itier"
3633
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
3634
+ }
3635
+ frloc_heir_fem_vow_1021_asian_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3636
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { religion_group = eastern culture_group = japanese_g capital_scope = { region = japan_region } } }
3637
+ }
3638
+ frloc_heir_masc_vow_1022_northerner_king_monastic_order_HEIR = { # "H閞itier"
3639
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
3640
+ }
3641
+ frloc_heir_fem_vow_1022_northerner_king_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3642
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform has_reform = commander_king_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
3643
+ }
3644
+ frloc_heir_masc_vow_1023_northerner_monastic_order_HEIR = { # "H閞itier"
3645
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
3646
+ }
3647
+ frloc_heir_fem_vow_1023_northerner_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3648
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform OR = { tag = NOL capital_scope = { area = yorkshire_area } capital_scope = { area = scottish_marches_area } } }
3649
+ }
3650
+ frloc_heir_masc_vow_1024_teutonic_monastic_order_HEIR = { # "H閞itier"
3651
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = TEU }
3652
+ }
3653
+ frloc_heir_fem_vow_1024_teutonic_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3654
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = TEU }
3655
+ }
3656
+ frloc_heir_masc_vow_1025_livonian_monastic_order_HEIR = { # "H閞itier"
3657
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = LIV }
3658
+ }
3659
+ frloc_heir_fem_vow_1025_livonian_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3660
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_order_reform tag = LIV }
3661
+ }
3662
+ frloc_heir_masc_vow_1026_germanic_monastic_order_HEIR = { # "H閞itier"
3663
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy has_reform = holy_state_reform } } culture_group = germanic }
3664
+ }
3665
+ frloc_heir_fem_vow_1026_germanic_monastic_order_HEIR_fem = { # "H閞iti鑢e"
3666
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy has_reform = holy_state_reform } } culture_group = germanic }
3667
+ }
3668
+ frloc_heir_masc_vow_1027_brewing_order_HEIR = { # "H閞itier"
3669
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_breweries_reform religion = catholic }
3670
+ }
3671
+ frloc_heir_fem_vow_1027_brewing_order_HEIR_fem = { # "H閞iti鑢e"
3672
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monastic_breweries_reform religion = catholic }
3673
+ }
3674
+ frloc_heir_masc_vow_1028_jewish_theocracy_HEIR = { # "H閞itier"
3675
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = jewish government = theocracy }
3676
+ }
3677
+ frloc_heir_fem_vow_1028_jewish_theocracy_HEIR_fem = { # "H閞iti鑢e"
3678
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = jewish government = theocracy }
3679
+ }
3680
+ frloc_heir_masc_vow_1029_zoroastrian_theocracy_HEIR = { # "H閞itier"
3681
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = zoroastrian government = theocracy }
3682
+ }
3683
+ frloc_heir_fem_vow_1029_zoroastrian_theocracy_HEIR_fem = { # "H閞iti鑢e"
3684
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = zoroastrian government = theocracy }
3685
+ }
3686
+ frloc_heir_masc_vow_1030_sikh_theocracy_HEIR = { # "H閞itier"
3687
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sikhism government = theocracy }
3688
+ }
3689
+ frloc_heir_fem_vow_1030_sikh_theocracy_HEIR_fem = { # "H閞iti鑢e"
3690
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sikhism government = theocracy }
3691
+ }
3692
+ frloc_heir_masc_vow_1031_hindu_theocracy_HEIR = { # "H閞itier"
3693
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = hinduism government = theocracy }
3694
+ }
3695
+ frloc_heir_fem_vow_1031_hindu_theocracy_HEIR_fem = { # "H閞iti鑢e"
3696
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = hinduism government = theocracy }
3697
+ }
3698
+ frloc_heir_masc_vow_1032_shinto_theocracy_HEIR = { # "H閞itier"
3699
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shinto government = theocracy }
3700
+ }
3701
+ frloc_heir_fem_vow_1032_shinto_theocracy_HEIR_fem = { # "H閞iti鑢e"
3702
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shinto government = theocracy }
3703
+ }
3704
+ frloc_heir_masc_vow_1033_buddhist_theocracy_HEIR = { # "H閞itier"
3705
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
3706
+ }
3707
+ frloc_heir_fem_vow_1033_buddhist_theocracy_HEIR_fem = { # "H閞iti鑢e"
3708
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { religion = buddhism religion = vajrayana religion = mahayana } government = theocracy }
3709
+ }
3710
+ frloc_heir_masc_vow_1034_confucian_theocracy_HEIR = { # "H閞itier"
3711
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = confucianism government = theocracy }
3712
+ }
3713
+ frloc_heir_fem_vow_1034_confucian_theocracy_HEIR_fem = { # "H閞iti鑢e"
3714
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = confucianism government = theocracy }
3715
+ }
3716
+ frloc_heir_masc_vow_1035_ibadi_theocracy_HEIR = { # "H閞itier"
3717
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
3718
+ }
3719
+ frloc_heir_fem_vow_1035_ibadi_theocracy_HEIR_fem = { # "H閞iti鑢e"
3720
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
3721
+ }
3722
+ frloc_heir_masc_vow_1036_yemenite_theocracy_HEIR = { # "H閞itier"
3723
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
3724
+ }
3725
+ frloc_heir_fem_vow_1036_yemenite_theocracy_HEIR_fem = { # "H閞iti鑢e"
3726
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
3727
+ }
3728
+ frloc_heir_masc_vow_1037_shiite_theocracy_HEIR = { # "H閞itier"
3729
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
3730
+ }
3731
+ frloc_heir_fem_vow_1037_shiite_theocracy_HEIR_fem = { # "H閞iti鑢e"
3732
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } NOT = { primary_culture = yemeni_culture } }
3733
+ }
3734
+ frloc_heir_masc_vow_1038_uyghur_theocracy_HEIR = { # "H閞itier"
3735
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
3736
+ }
3737
+ frloc_heir_fem_vow_1038_uyghur_theocracy_HEIR_fem = { # "H閞iti鑢e"
3738
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni government = theocracy OR = { primary_culture = uyghur has_country_flag = end_of_khojas } }
3739
+ }
3740
+ frloc_heir_masc_vow_1039_sunni_theocracy_HEIR = { # "H閞itier"
3741
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
3742
+ }
3743
+ frloc_heir_fem_vow_1039_sunni_theocracy_HEIR_fem = { # "H閞iti鑢e"
3744
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
3745
+ }
3746
+ frloc_heir_masc_vow_1040_orthodox_theocracy_HEIR = { # "H閞itier"
3747
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { religion = orthodox religion = coptic } government = theocracy }
3748
+ }
3749
+ frloc_heir_fem_vow_1040_orthodox_theocracy_HEIR_fem = { # "H閞iti鑢e"
3750
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { religion = orthodox religion = coptic } government = theocracy }
3751
+ }
3752
+ frloc_heir_masc_vow_1041_inti_theocracy_HEIR = { # "H閞itier"
3753
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = inti government = theocracy }
3754
+ }
3755
+ frloc_heir_fem_vow_1041_inti_theocracy_HEIR_fem = { # "H閞iti鑢e"
3756
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = inti government = theocracy }
3757
+ }
3758
+ frloc_heir_masc_vow_1042_pagan_theocracy_HEIR = { # "H閞itier"
3759
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = pagan government = theocracy }
3760
+ }
3761
+ frloc_heir_fem_vow_1042_pagan_theocracy_HEIR_fem = { # "H閞iti鑢e"
3762
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion_group = pagan government = theocracy }
3763
+ }
3764
+ frloc_heir_masc_vow_1043_gov_religious_order_HEIR = { # "H閞itier"
3765
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
3766
+ }
3767
+ frloc_heir_fem_vow_1043_gov_religious_order_HEIR_fem = { # "H閞iti鑢e"
3768
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = monastic_order_reform AND = { government = theocracy tag = KOJ } } }
3769
+ }
3770
+ frloc_heir_masc_vow_1044_sisters_crusader_state_HEIR = { # "H閞itier"
3771
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
3772
+ }
3773
+ frloc_heir_fem_vow_1044_sisters_crusader_state_HEIR_fem = { # "H閞iti鑢e"
3774
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { AND = { has_reform = holy_state_reform has_country_modifier = sisters_takeover } has_reform = sisterhood_of_jeanne_darc_reform } }
3775
+ }
3776
+ frloc_heir_masc_vow_1045_gov_jarldom_HEIR = { # "H閞itier"
3777
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
3778
+ }
3779
+ frloc_heir_fem_vow_1045_gov_jarldom_HEIR_fem = { # "H閞iti鑢e"
3780
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
3781
+ }
3782
+
3783
+
3784
+ ### LOWER PRIORITY / PRIORIT?BASSE = zz_default_government_names.txt ###
3785
+
3786
+ frloc_heir_masc_vow_2001_default_monarchy_HEIR = { # "H閞itier"
3787
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic }
3788
+ }
3789
+ frloc_heir_fem_vow_2001_default_monarchy_HEIR_fem = { # "H閞iti鑢e"
3790
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic }
3791
+ }
3792
+ frloc_heir_masc_vow_2003_default_theocracy_HEIR = { # "H閞itier"
3793
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = theocracy }
3794
+ }
3795
+ frloc_heir_fem_vow_2003_default_theocracy_HEIR_fem = { # "H閞iti鑢e"
3796
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = theocracy }
3797
+ }
3798
+ frloc_heir_masc_vow_2004_default_tribal_HEIR = { # "H閞itier"
3799
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = tribal }
3800
+ }
3801
+ frloc_heir_fem_vow_2004_default_tribal_HEIR_fem = { # "H閞iti鑢e"
3802
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = tribal }
3803
+ }
3804
+
3805
+
3806
+
3807
+
3808
+ #############################################################################
3809
+ ### Consort Articles & Titles // Articles et titres pour les consorts ###
3810
+ #############################################################################
3811
+ # Ex.: _masc_cons_ => LE prince consort / DU prince consort / AU prince consort / CE prince consort / nouvEAU prince consort / SON prince consort / SON nouveau prince consort / SON ancien prince consort
3812
+ # Ex.: _masc_vow_ => L'empereur consort / DE L'empereur consort / ?L'empereur consort / CET empereur consort / nouvEL empereur consort / SON empereur consort / SON nouvel empereur consort / SON ancien empereur consort
3813
+ # Ex.: _masc_cons_ => LA reine consort / DE LA reine consort / ?LA reine consort / CETTE reine consort / nouvELLE reine consort / SA reine consort / SA nouvelle reine consort / SON ancienne reine consort
3814
+ # Ex.: _masc_vow_ => L'imp閞atrice consort / DE L'imp閞atrice consort / ?L'imp閞atrice consort / CETTE imp閞atrice consort / nouvELLE imp閞atrice consort / SON imp閞atrice consort / SA nouvelle imp閞atrice consort / SON ancienne imp閞atrice consort
3815
+
3816
+ ### HIGHER PRIORITY / PRIORIT?HAUTE = 00_government_names.txt ###
3817
+
3818
+ frloc_consort_masc_cons_0000_georgian_MTAVARI = { # "Prince"
3819
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3820
+ }
3821
+ frloc_consort_masc_cons_0000_georgian_MEPE = { # "Roi"
3822
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3823
+ }
3824
+ frloc_consort_masc_vow_0000_georgian_IMPERATORI = { # "Empereur"
3825
+ AND = { government_rank = 3 OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3826
+ }
3827
+ frloc_consort_fem_cons_0000_georgian_MTAVARI_fem = { # "Princesse"
3828
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3829
+ }
3830
+ frloc_consort_fem_cons_0000_georgian_DEDOPALI = { # "Reine"
3831
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3832
+ }
3833
+ frloc_consort_fem_vow_0000_georgian_IMPERATRITSA = { # "Imp閞atrice"
3834
+ AND = { government_rank = 3 OR = { primary_culture = georgian primary_culture = georgian_new } NOT = { tag = SME } government = monarchy }
3835
+ }
3836
+ frloc_consort_masc_cons_0001_stateless_society_CONSORT = { # "Consort"
3837
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
3838
+ }
3839
+ frloc_consort_fem_cons_0001_stateless_society_CONSORT = { # "Consort"
3840
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = stateless_society }
3841
+ }
3842
+ frloc_consort_masc_cons_0001a_kongo_tribal_kingdom_PRINCE_CONSORT = { # "Prince consort"
3843
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = tribal } }
3844
+ }
3845
+ frloc_consort_fem_cons_0001a_kongo_tribal_kingdom_CONSORT = { # "Consort"
3846
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = tribal } }
3847
+ }
3848
+ frloc_consort_fem_cons_0001a_kongo_tribal_kingdom_QUEEN_CONSORT = { # "Reine consort"
3849
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = tribal } }
3850
+ }
3851
+ frloc_consort_fem_vow_0001a_kongo_tribal_kingdom_EMPRESS_CONSORT = { # "Imp閞atrice consort"
3852
+ AND = { government_rank = 3 AND = { tag = KON government = tribal } }
3853
+ }
3854
+ frloc_consort_masc_cons_0001b_kongo_monarchy_kingdom_PRINCE_CONSORT = { # "Prince consort"
3855
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } AND = { tag = KON government = monarchy } }
3856
+ }
3857
+ frloc_consort_fem_cons_0001b_kongo_monarchy_kingdom_CONSORT = { # "Consort"
3858
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } AND = { tag = KON government = monarchy } }
3859
+ }
3860
+ frloc_consort_fem_cons_0001b_kongo_monarchy_kingdom_QUEEN_CONSORT = { # "Reine consort"
3861
+ AND = { government_rank = 2 NOT = { government_rank = 3 } AND = { tag = KON government = monarchy } }
3862
+ }
3863
+ frloc_consort_fem_vow_0001b_kongo_monarchy_kingdom_GREAT_EMPRESS_CONSORT = { # "Imp閞atrice consort"
3864
+ AND = { government_rank = 3 AND = { tag = KON government = monarchy } }
3865
+ }
3866
+ frloc_consort_masc_cons_0002_islamic_caliphate_CONSORT = { # "Consort"
3867
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
3868
+ }
3869
+ frloc_consort_fem_cons_0002_islamic_caliphate_CONSORT = { # "Consort"
3870
+ AND = { government_rank = 3 has_country_modifier = unified_islam }
3871
+ }
3872
+ frloc_consort_masc_cons_0011_gov_german_empire_KAISER = { # "Kaiser"
3873
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
3874
+ }
3875
+ frloc_consort_fem_cons_0011_gov_german_empire_KAISERIN = { # "Kaiserin"
3876
+ AND = { government_rank = 3 culture_group = germanic OR = { tag = HLR tag = GER } government = monarchy }
3877
+ }
3878
+ frloc_consort_masc_cons_0022_yuan_empire_BEILE = { # "Beile"
3879
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3880
+ }
3881
+ frloc_consort_masc_cons_0022_yuan_empire_KHAN = { # "Kh鈔"
3882
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3883
+ }
3884
+ frloc_consort_masc_cons_0022_yuan_empire_YEKHE_KHAGAN = { # "Yekhe khagan"
3885
+ AND = { government_rank = 3 OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3886
+ }
3887
+ frloc_consort_fem_cons_0022_yuan_empire_GEGE = { # "Gege"
3888
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3889
+ }
3890
+ frloc_consort_fem_cons_0022_yuan_empire_KHANUM = { # "Khanoum"
3891
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3892
+ }
3893
+ frloc_consort_fem_cons_0022_yuan_empire_YEKHE_KHANUM = { # "Yekhe khanoum"
3894
+ AND = { government_rank = 3 OR = { tag = YUA AND = { tag = OIR has_reform = celestial_empire } } government = monarchy }
3895
+ }
3896
+ frloc_consort_masc_cons_0023_ilkhanate_march_KHANZADEH = { # "Kh鈔z鈊eh"
3897
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
3898
+ }
3899
+ frloc_consort_fem_cons_0023_ilkhanate_march_KHANUM = { # "Khanoum"
3900
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = ILK is_march = yes }
3901
+ }
3902
+ frloc_consort_masc_cons_0024_celestial_parliament_PRINCE_CONSORT = { # "Prince consort"
3903
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
3904
+ }
3905
+ frloc_consort_fem_vow_0024_celestial_parliament_EMPRESS_CONSORT = { # "Imp閞atrice consort"
3906
+ AND = { government_rank = 3 has_reform = celestial_empire has_reform = parliamentary_reform }
3907
+ }
3908
+ frloc_consort_masc_cons_0025_ottoman_marches_BEY = { # "Bey"
3909
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
3910
+ }
3911
+ frloc_consort_fem_cons_0025_ottoman_marches_HATUN = { # "Hatun"
3912
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } is_march = yes religion_group = muslim overlord = { primary_culture = turkish } }
3913
+ }
3914
+ frloc_consort_masc_cons_0026_ottoman_vassals_BEY = { # "Bey"
3915
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
3916
+ }
3917
+ frloc_consort_fem_cons_0026_ottoman_vassals_HATUN = { # "Hatun"
3918
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = muslim NOT = { is_march = yes } is_subject_of_type = vassal NOT = { has_reform = eyalet_government } NOT = { has_reform = barbary_eyalet_government } overlord = { primary_culture = turkish } }
3919
+ }
3920
+ frloc_consort_masc_cons_0026b_ottoman_eyalets_BEY = { # "Bey"
3921
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
3922
+ }
3923
+ frloc_consort_fem_cons_0026b_ottoman_eyalets_HATUN = { # "Hatun"
3924
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = eyalet_government } }
3925
+ }
3926
+ frloc_consort_masc_cons_0026c_ottoman_barbary_eyalets_BEY = { # "Bey"
3927
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
3928
+ }
3929
+ frloc_consort_fem_cons_0026c_ottoman_barbary_eyalets_HATUN = { # "Hatun"
3930
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { is_subject_of_type = eyalet is_subject_of_type = core_eyalet has_reform = barbary_eyalet_government } }
3931
+ }
3932
+ frloc_consort_masc_cons_0027_march_christian_monarchy_MARGRAVE_CONSORT = { # "Margrave consort"
3933
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3934
+ }
3935
+ frloc_consort_masc_cons_0027_march_christian_monarchy_VICEROY_CONSORT = { # "Vice-roi consort"
3936
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3937
+ }
3938
+ frloc_consort_masc_vow_0027_march_christian_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
3939
+ AND = { government_rank = 3 government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3940
+ }
3941
+ frloc_consort_fem_cons_0027_march_christian_monarchy_MARGRAVINE = { # "Margravine"
3942
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3943
+ }
3944
+ frloc_consort_fem_cons_0027_march_christian_monarchy_VICEREINE = { # "Vice-reine"
3945
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3946
+ }
3947
+ frloc_consort_fem_vow_0027_march_christian_monarchy_EMPRESS = { # "Imp閞atrice"
3948
+ AND = { government_rank = 3 government = monarchy religion_group = christian NOT = { religion = orthodox } NOT = { religion = coptic } is_march = yes }
3949
+ }
3950
+ frloc_consort_masc_vow_0029_palatine_electorate_ELECTOR = { # "蒷ecteur"
3951
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
3952
+ }
3953
+ frloc_consort_fem_vow_0029_palatine_electorate_ELECTRESS = { # "蒷ectrice"
3954
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes tag = PAL }
3955
+ }
3956
+ frloc_consort_masc_cons_0030_palatine_monarchy_PRINCE_CONSORT = { # "Prince consort"
3957
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy tag = PAL }
3958
+ }
3959
+ frloc_consort_fem_cons_0030_palatine_monarchy_CONSORT = { # "Consort"
3960
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PAL }
3961
+ }
3962
+ frloc_consort_fem_cons_0030_palatine_monarchy_QUEEN_CONSORT = { # "Reine consort"
3963
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PAL }
3964
+ }
3965
+ frloc_consort_fem_vow_0030_palatine_monarchy_EMPRESS_CONSORT = { # "Imp閞atrice consort"
3966
+ AND = { government_rank = 3 government = monarchy tag = PAL }
3967
+ }
3968
+ frloc_consort_masc_cons_0031_herzegovina_monarchy_PRINCE_CONSORT = { # "Prince consort"
3969
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } government = monarchy tag = HRZ }
3970
+ }
3971
+ frloc_consort_fem_cons_0031_herzegovina_monarchy_CONSORT = { # "Consort"
3972
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = HRZ }
3973
+ }
3974
+ frloc_consort_fem_cons_0031_herzegovina_monarchy_QUEEN_CONSORT = { # "Reine consort"
3975
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = HRZ }
3976
+ }
3977
+ frloc_consort_masc_vow_0032_holy_roman_electors_monarchy_ELECTOR = { # "蒷ecteur"
3978
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
3979
+ }
3980
+ frloc_consort_fem_vow_0032_holy_roman_electors_monarchy_ELECTRESS = { # "蒷ectrice"
3981
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy is_elector = yes is_emperor = no NOT = { tag = HAB } }
3982
+ }
3983
+ frloc_consort_masc_cons_0035_japanese_shogunate_LORD = { # "Seigneur"
3984
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
3985
+ }
3986
+ frloc_consort_fem_cons_0035_japanese_shogunate_LADY = { # "Dame"
3987
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = JAP government = monarchy NOT = { has_reform = shogunate } NOT = { has_reform = japanese_divine_empire } }
3988
+ }
3989
+ frloc_consort_masc_vow_0036_islamic_syncretism_kingdoms_EMIR_CONSORT = { # "蒻ir consort"
3990
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
3991
+ }
3992
+ frloc_consort_masc_cons_0036_islamic_syncretism_kingdoms_SULTAN_CONSORT = { # "Sultan consort"
3993
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
3994
+ }
3995
+ frloc_consort_fem_cons_0036_islamic_syncretism_kingdoms_EMIRA = { # "蒻ira"
3996
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
3997
+ }
3998
+ frloc_consort_fem_cons_0036_islamic_syncretism_kingdoms_SULTANA = { # "Sultane"
3999
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { religion_group = muslim } has_country_flag = sultan_titles_for_non_muslims }
4000
+ }
4001
+ frloc_consort_masc_cons_0037_french_kingdom_DUKE = { # "Duc"
4002
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4003
+ }
4004
+ frloc_consort_masc_cons_0037_french_kingdom_KING = { # "Roi"
4005
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4006
+ }
4007
+ frloc_consort_masc_vow_0037_french_kingdom_EMPEROR = { # "Empereur"
4008
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4009
+ }
4010
+ frloc_consort_fem_cons_0037_french_kingdom_DUCHESS = { # "Duchesse"
4011
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4012
+ }
4013
+ frloc_consort_fem_cons_0037_french_kingdom_QUEEN = { # "Reine"
4014
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4015
+ }
4016
+ frloc_consort_fem_vow_0037_french_kingdom_EMPRESS = { # "Imp閞atrice"
4017
+ AND = { government_rank = 3 government = monarchy NOT = { has_reform = revolutionary_empire_reform } OR = { tag = FRA tag = AUV } }
4018
+ }
4019
+ frloc_consort_masc_cons_0038_sharifs_of_mecca_MALIK = { # "M鈒ik"
4020
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
4021
+ }
4022
+ frloc_consort_masc_vow_0038_sharifs_of_mecca_EMIR = { # "蒻ir"
4023
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
4024
+ }
4025
+ frloc_consort_fem_cons_0038_sharifs_of_mecca_MALIKAH = { # "M鈒ika"
4026
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
4027
+ }
4028
+ frloc_consort_fem_vow_0038_sharifs_of_mecca_EMIRA = { # "蒻ira"
4029
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim OR = { tag = HED tag = MDA tag = MFL has_reform = sharifate_reform } }
4030
+ }
4031
+ frloc_consort_masc_cons_0039_avar_nutsals_PRINCE = { # "Prince"
4032
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = AVR government = monarchy }
4033
+ }
4034
+ frloc_consort_masc_cons_0039_avar_nutsals_KHAN = { # "Kh鈔"
4035
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = AVR government = monarchy }
4036
+ }
4037
+ frloc_consort_masc_cons_0039_avar_nutsals_KHAGAN = { # "Khagan"
4038
+ AND = { government_rank = 3 tag = AVR government = monarchy }
4039
+ }
4040
+ frloc_consort_fem_cons_0039_avar_nutsals_PRINCESS = { # "Princesse"
4041
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = AVR government = monarchy }
4042
+ }
4043
+ frloc_consort_fem_cons_0039_avar_nutsals_KHATUN = { # "Khatoun"
4044
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = AVR government = monarchy }
4045
+ }
4046
+ frloc_consort_fem_cons_0039_avar_nutsals_GREAT_KHATUN = { # "Grande khatoun"
4047
+ AND = { government_rank = 3 tag = AVR government = monarchy }
4048
+ }
4049
+ #frloc_consort_masc_cons_0040_georgian_monarchy_PRINCE = { # "Prince"
4050
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
4051
+ #}
4052
+ #frloc_consort_masc_cons_0040_georgian_monarchy_KING = { # "Roi"
4053
+ # AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = georgian }
4054
+ #}
4055
+ #frloc_consort_masc_vow_0040_georgian_monarchy_EMPEROR = { # "Empereur"
4056
+ # AND = { government_rank = 3 government = monarchy primary_culture = georgian }
4057
+ #}
4058
+ #frloc_consort_fem_cons_0040_georgian_monarchy_PRINCESS = { # "Princesse"
4059
+ # AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = georgian }
4060
+ #}
4061
+ #frloc_consort_fem_cons_0040_georgian_monarchy_QUEEN = { # "Reine"
4062
+ # AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = georgian }
4063
+ #}
4064
+ #frloc_consort_fem_vow_0040_georgian_monarchy_EMPRESS = { # "Imp閞atrice"
4065
+ # AND = { government_rank = 3 government = monarchy primary_culture = georgian }
4066
+ #}
4067
+ frloc_consort_masc_vow_0041_dais_of_najran_EMIR_CONSORT = { # "蒻ir consort"
4068
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim tag = NJR }
4069
+ }
4070
+ frloc_consort_masc_cons_0041_dais_of_najran_SULTAN_CONSORT = { # "Sultan consort"
4071
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim tag = NJR }
4072
+ }
4073
+ frloc_consort_masc_cons_0041_dais_of_najran_PADISHAH_CONSORT = { # "Padish鈎 consort"
4074
+ AND = { government_rank = 3 religion_group = muslim tag = NJR }
4075
+ }
4076
+ frloc_consort_fem_vow_0041_dais_of_najran_EMIRA = { # "蒻ira"
4077
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim tag = NJR }
4078
+ }
4079
+ frloc_consort_fem_cons_0041_dais_of_najran_SULTANA = { # "Sultane"
4080
+ AND = { government_rank = 2 NOT = { government_rank = 3 } religion_group = muslim tag = NJR }
4081
+ }
4082
+ frloc_consort_fem_cons_0041_dais_of_najran_PADISHAH_CONSORT = { # "Padish鈎 consort"
4083
+ AND = { government_rank = 3 religion_group = muslim tag = NJR }
4084
+ }
4085
+ frloc_consort_masc_cons_0042_malian_monarchy_PRINCE_CONSORT = { # "Prince consort"
4086
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = MAL }
4087
+ }
4088
+ frloc_consort_masc_cons_0042_malian_monarchy_KING_CONSORT = { # "Roi consort"
4089
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = MAL }
4090
+ }
4091
+ frloc_consort_masc_vow_0042_malian_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4092
+ AND = { government_rank = 3 government = monarchy tag = MAL }
4093
+ }
4094
+ frloc_consort_fem_cons_0042_malian_monarchy_PRINCESS = { # "Princesse"
4095
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = MAL }
4096
+ }
4097
+ frloc_consort_fem_cons_0042_malian_monarchy_QUEEN = { # "Reine"
4098
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = MAL }
4099
+ }
4100
+ frloc_consort_fem_vow_0042_malian_monarchy_EMPRESS = { # "Imp閞atrice"
4101
+ AND = { government_rank = 3 government = monarchy tag = MAL }
4102
+ }
4103
+ frloc_consort_masc_cons_0043_arabic_tribal_MALIK = { # "M鈒ik"
4104
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
4105
+ }
4106
+ frloc_consort_masc_vow_0043_arabic_tribal_EMIR_CONSORT = { # "蒻ir consort"
4107
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
4108
+ }
4109
+ frloc_consort_fem_cons_0043_arabic_tribal_MALIKAH = { # "M鈒ika"
4110
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
4111
+ }
4112
+ frloc_consort_fem_vow_0043_arabic_tribal_EMIRA = { # "蒻ira"
4113
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim primary_culture = bedouin_arabic government = tribal }
4114
+ }
4115
+ frloc_consort_masc_cons_0044_muslim_tribal_MALIK = { # "M鈒ik"
4116
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
4117
+ }
4118
+ frloc_consort_masc_cons_0044_muslim_tribal_SULTAN_CONSORT = { # "Sultan consort"
4119
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
4120
+ }
4121
+ frloc_consort_fem_cons_0044_muslim_tribal_MALIKAH = { # "M鈒ika"
4122
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
4123
+ }
4124
+ frloc_consort_fem_cons_0044_muslim_tribal_SULTANA = { # "Sultane"
4125
+ AND = { OR = { government_rank = 2 government_rank = 3 } religion_group = muslim government = tribal NOT = { has_reform = steppe_horde } }
4126
+ }
4127
+ frloc_consort_masc_cons_0045_kathiawar_tribal_monarchy_CONSORT = { # "Consort"
4128
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
4129
+ }
4130
+ frloc_consort_fem_cons_0045_kathiawar_tribal_monarchy_CONSORT = { # "Consort"
4131
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = KAT primary_culture = sindhi } }
4132
+ }
4133
+ frloc_consort_masc_cons_0046_sistan_monarchy_MIRZA = { # "M顁z?
4134
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
4135
+ }
4136
+ frloc_consort_masc_cons_0046_sistan_monarchy_SHAH_CONSORT = { # "Sh鈎 consort"
4137
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy tag = SIS }
4138
+ }
4139
+ frloc_consort_fem_cons_0046_sistan_monarchy_MALIKAH = { # "M鈒ika"
4140
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = SIS }
4141
+ }
4142
+ frloc_consort_fem_cons_0046_sistan_monarchy_KHANUM = { # "Khanoum"
4143
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy tag = SIS }
4144
+ }
4145
+ frloc_consort_masc_cons_0046b_turcoman_persian_monarchy_MIRZA = { # "M顁z?
4146
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
4147
+ }
4148
+ frloc_consort_masc_cons_0046b_turcoman_persian_monarchy_SHAH_CONSORT = { # "Sh鈎 consort"
4149
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
4150
+ }
4151
+ frloc_consort_fem_cons_0046b_turcoman_persian_monarchy_SHEIKHA = { # "Cheikha"
4152
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_country_flag = turkoman_adopt_shahanshah_title }
4153
+ }
4154
+ frloc_consort_fem_cons_0046b_turcoman_persian_monarchy_KHANUM = { # "Khanoum"
4155
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_country_flag = turkoman_adopt_shahanshah_title }
4156
+ }
4157
+ frloc_consort_masc_cons_0047_persian_monarchy_MIRZA = { # "M顁z?
4158
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
4159
+ }
4160
+ frloc_consort_masc_cons_0047_persian_monarchy_SHAH_CONSORT = { # "Sh鈎 consort"
4161
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy culture_group = iranian }
4162
+ }
4163
+ frloc_consort_fem_cons_0047_persian_monarchy_SHEIKHA = { # "Cheikha"
4164
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = iranian }
4165
+ }
4166
+ frloc_consort_fem_cons_0047_persian_monarchy_SHAHBANU = { # "Shahb鈔u"
4167
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy culture_group = iranian }
4168
+ }
4169
+ frloc_consort_masc_cons_0048_somali_monarchy_BOQOR = { # "Boqor"
4170
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = somali }
4171
+ }
4172
+ frloc_consort_fem_cons_0048_somali_monarchy_BOQORAD = { # "Boqorad"
4173
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy primary_culture = somali }
4174
+ }
4175
+ frloc_consort_masc_cons_0049_lithuanian_monarchy_GRAND_DUKE_CONSORT = { # "Grand-duc consort"
4176
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = LIT government = monarchy }
4177
+ }
4178
+ frloc_consort_masc_cons_0049_lithuanian_monarchy_KING_CONSORT = { # "Roi consort"
4179
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = LIT government = monarchy }
4180
+ }
4181
+ frloc_consort_masc_vow_0049_lithuanian_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4182
+ AND = { government_rank = 3 tag = LIT government = monarchy }
4183
+ }
4184
+ frloc_consort_fem_cons_0049_lithuanian_monarchy_GRAND_DUCHESS = { # "Grande-duchesse"
4185
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = LIT government = monarchy }
4186
+ }
4187
+ frloc_consort_fem_cons_0049_lithuanian_monarchy_QUEEN = { # "Reine"
4188
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = LIT government = monarchy }
4189
+ }
4190
+ frloc_consort_fem_vow_0049_lithuanian_monarchy_EMPRESS = { # "Imp閞atrice"
4191
+ AND = { government_rank = 3 tag = LIT government = monarchy }
4192
+ }
4193
+ frloc_consort_masc_vow_0050_cristopher_of_bavaria_monarchy_ARCHDUKE_CONSORT = { # "Archiduc consort"
4194
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4195
+ }
4196
+ frloc_consort_masc_cons_0050_cristopher_of_bavaria_monarchy_KING_CONSORT = { # "Roi consort"
4197
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4198
+ }
4199
+ frloc_consort_masc_vow_0050_cristopher_of_bavaria_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4200
+ AND = { government_rank = 3 OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4201
+ }
4202
+ frloc_consort_fem_vow_0050_cristopher_of_bavaria_monarchy_ARCHDUCHESS = { # "Archiduchesse"
4203
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4204
+ }
4205
+ frloc_consort_fem_vow_0050_cristopher_of_bavaria_monarchy_ARCHQUEEN = { # "Archi-reine"
4206
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4207
+ }
4208
+ frloc_consort_fem_vow_0050_cristopher_of_bavaria_monarchy_EMPRESS = { # "Imp閞atrice"
4209
+ AND = { government_rank = 3 OR = { AND = { tag = DAN government = monarchy OR = { has_ruler = "Christoffer III" has_ruler = "Christopher III" } } has_ruler_flag = has_proclaimed_archking_title } }
4210
+ }
4211
+ frloc_consort_masc_cons_0051_hunyadi_regent_monarchy_PRINCE_CONSORT = { # "Prince consort"
4212
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
4213
+ }
4214
+ frloc_consort_fem_cons_0051_hunyadi_regent_monarchy_CONSORT = { # "Consort"
4215
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
4216
+ }
4217
+ frloc_consort_fem_cons_0051_hunyadi_regent_monarchy_QUEEN_CONSORT = { # "Reine consort"
4218
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
4219
+ }
4220
+ frloc_consort_fem_vow_0051_hunyadi_regent_monarchy_EMPRESS_CONSORT = { # "Imp閞atrice consort"
4221
+ AND = { government_rank = 3 tag = HUN government = monarchy has_heir = "Ladislaus Postumus" }
4222
+ }
4223
+ frloc_consort_masc_vow_0052_austrian_monarchy_ARCHDUKE_CONSORT = { # "Archiduc consort"
4224
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HAB government = monarchy }
4225
+ }
4226
+ frloc_consort_masc_cons_0052_austrian_monarchy_KING_CONSORT = { # "Roi consort"
4227
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HAB government = monarchy }
4228
+ }
4229
+ frloc_consort_masc_vow_0052_austrian_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4230
+ AND = { government_rank = 3 tag = HAB government = monarchy }
4231
+ }
4232
+ frloc_consort_fem_vow_0052_austrian_monarchy_ARCHDUCHESS = { # "Archiduchesse"
4233
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } tag = HAB government = monarchy }
4234
+ }
4235
+ frloc_consort_fem_cons_0052_austrian_monarchy_QUEEN = { # "Reine"
4236
+ AND = { government_rank = 2 NOT = { government_rank = 3 } tag = HAB government = monarchy }
4237
+ }
4238
+ frloc_consort_fem_vow_0052_austrian_monarchy_EMPRESS = { # "Imp閞atrice"
4239
+ AND = { government_rank = 3 tag = HAB government = monarchy }
4240
+ }
4241
+ frloc_consort_masc_cons_0053_turkish_monarchy_BEY = { # "Bey"
4242
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = turkish }
4243
+ }
4244
+ frloc_consort_masc_cons_0053_turkish_monarchy_SULTAN_CONSORT = { # "Sultan consort"
4245
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = turkish }
4246
+ }
4247
+ frloc_consort_masc_cons_0053_turkish_monarchy_PADISHAH_CONSORT = { # "Padish鈎 consort"
4248
+ AND = { government_rank = 3 government = monarchy primary_culture = turkish }
4249
+ }
4250
+ frloc_consort_fem_cons_0053_turkish_monarchy_HATUN = { # "Hatun"
4251
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = turkish }
4252
+ }
4253
+ frloc_consort_fem_cons_0053_turkish_monarchy_HASEKI_SULTAN = { # "Haseki"
4254
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy primary_culture = turkish }
4255
+ }
4256
+ frloc_consort_masc_cons_0054_theodoro_monarchy_PRINCE_CONSORT = { # "Prince consort"
4257
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = FEO }
4258
+ }
4259
+ frloc_consort_masc_cons_0054_theodoro_monarchy_KING_CONSORT = { # "Roi consort"
4260
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = FEO }
4261
+ }
4262
+ frloc_consort_masc_vow_0054_theodoro_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4263
+ AND = { government_rank = 3 government = monarchy tag = FEO }
4264
+ }
4265
+ frloc_consort_fem_cons_0054_theodoro_monarchy_PRINCESS = { # "Princesse"
4266
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = FEO }
4267
+ }
4268
+ frloc_consort_fem_cons_0054_theodoro_monarchy_QUEEN = { # "Reine"
4269
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = FEO }
4270
+ }
4271
+ frloc_consort_fem_vow_0054_theodoro_monarchy_EMPRESS = { # "Imp閞atrice"
4272
+ AND = { government_rank = 3 government = monarchy tag = FEO }
4273
+ }
4274
+ frloc_consort_masc_cons_0055_croatian_monarchy_PRINCE_CONSORT = { # "Prince consort"
4275
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
4276
+ }
4277
+ frloc_consort_fem_cons_0055_croatian_monarchy_PRINCESS = { # "Princesse"
4278
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
4279
+ }
4280
+ frloc_consort_fem_cons_0055_croatian_monarchy_KRALJICA = { # "Kraljitsa"
4281
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
4282
+ }
4283
+ frloc_consort_fem_cons_0055_croatian_monarchy_CARICA = { # "Tsarine"
4284
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian primary_culture = croatian_new } }
4285
+ }
4286
+ frloc_consort_masc_cons_0056_finnish_monarchy_GRAND_DUKE_CONSORT = { # "Grand-duc consort"
4287
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = finnish }
4288
+ }
4289
+ frloc_consort_masc_cons_0056_finnish_monarchy_KING_CONSORT = { # "Roi consort"
4290
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = finnish }
4291
+ }
4292
+ frloc_consort_masc_vow_0056_finnish_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4293
+ AND = { government_rank = 3 government = monarchy primary_culture = finnish }
4294
+ }
4295
+ frloc_consort_fem_cons_0056_finnish_monarchy_GRAND_DUCHESS = { # "Grande-duchesse"
4296
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = finnish }
4297
+ }
4298
+ frloc_consort_fem_cons_0056_finnish_monarchy_QUEEN = { # "Reine"
4299
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = finnish }
4300
+ }
4301
+ frloc_consort_fem_vow_0056_finnish_monarchy_EMPRESS = { # "Imp閞atrice"
4302
+ AND = { government_rank = 3 government = monarchy primary_culture = finnish }
4303
+ }
4304
+ frloc_consort_masc_cons_0057_grand_duchy_of_tuscany_GRAND_DUKE_CONSORT = { # "Grand-duc consort"
4305
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = TUS }
4306
+ }
4307
+ frloc_consort_masc_cons_0057_grand_duchy_of_tuscany_KING_CONSORT = { # "Roi consort"
4308
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = TUS }
4309
+ }
4310
+ frloc_consort_masc_vow_0057_grand_duchy_of_tuscany_EMPEROR_CONSORT = { # "Empereur consort"
4311
+ AND = { government_rank = 3 government = monarchy tag = TUS }
4312
+ }
4313
+ frloc_consort_fem_cons_0057_grand_duchy_of_tuscany_GRAND_DUCHESS = { # "Grande-duchesse"
4314
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = TUS }
4315
+ }
4316
+ frloc_consort_fem_cons_0057_grand_duchy_of_tuscany_QUEEN = { # "Reine"
4317
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = TUS }
4318
+ }
4319
+ frloc_consort_fem_vow_0057_grand_duchy_of_tuscany_EMPRESS = { # "Imp閞atrice"
4320
+ AND = { government_rank = 3 government = monarchy tag = TUS }
4321
+ }
4322
+ frloc_consort_masc_cons_0058_grand_duchy_of_baden_GRAND_DUKE_CONSORT = { # "Grand-duc consort"
4323
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BAD has_idea = bad_grand_duchy }
4324
+ }
4325
+ frloc_consort_masc_cons_0058_grand_duchy_of_baden_KING_CONSORT = { # "Roi consort"
4326
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
4327
+ }
4328
+ frloc_consort_masc_vow_0058_grand_duchy_of_baden_EMPEROR_CONSORT = { # "Empereur consort"
4329
+ AND = { government_rank = 3 government = monarchy tag = BAD has_idea = bad_grand_duchy }
4330
+ }
4331
+ frloc_consort_fem_cons_0058_grand_duchy_of_baden_GRAND_DUCHESS = { # "Grande-duchesse"
4332
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BAD has_idea = bad_grand_duchy }
4333
+ }
4334
+ frloc_consort_fem_cons_0058_grand_duchy_of_baden_QUEEN = { # "Reine"
4335
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BAD has_idea = bad_grand_duchy }
4336
+ }
4337
+ frloc_consort_fem_vow_0058_grand_duchy_of_baden_EMPRESS = { # "Imp閞atrice"
4338
+ AND = { government_rank = 3 government = monarchy tag = BAD has_idea = bad_grand_duchy }
4339
+ }
4340
+ frloc_consort_masc_cons_0059_grand_duchy_of_luxembourg_GRAND_DUKE_CONSORT = { # "Grand-duc consort"
4341
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4342
+ }
4343
+ frloc_consort_masc_cons_0059_grand_duchy_of_luxembourg_KING_CONSORT = { # "Roi consort"
4344
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4345
+ }
4346
+ frloc_consort_masc_vow_0059_grand_duchy_of_luxembourg_EMPEROR_CONSORT = { # "Empereur consort"
4347
+ AND = { government_rank = 3 government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4348
+ }
4349
+ frloc_consort_fem_cons_0059_grand_duchy_of_luxembourg_GRAND_DUCHESS = { # "Grande-duchesse"
4350
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4351
+ }
4352
+ frloc_consort_fem_cons_0059_grand_duchy_of_luxembourg_QUEEN = { # "Reine"
4353
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4354
+ }
4355
+ frloc_consort_fem_vow_0059_grand_duchy_of_luxembourg_EMPRESS = { # "Imp閞atrice"
4356
+ AND = { government_rank = 3 government = monarchy tag = LUX has_idea = lux_grand_duchy_of_luxembourg }
4357
+ }
4358
+ frloc_consort_masc_cons_0060_serbian_feudal_monarchy_PRINCE_CONSORT = { # "Prince consort"
4359
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
4360
+ }
4361
+ frloc_consort_fem_cons_0060_serbian_feudal_monarchy_PRINCEZA = { # "Princesse"
4362
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
4363
+ }
4364
+ frloc_consort_fem_cons_0060_serbian_feudal_monarchy_DESPOTISSA = { # "Despote"
4365
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
4366
+ }
4367
+ frloc_consort_fem_cons_0060_serbian_feudal_monarchy_CARICA = { # "Tsarine"
4368
+ AND = { government_rank = 3 government = monarchy OR = { has_reform = feudalism_reform has_reform = autocracy_reform } OR = { primary_culture = serbian primary_culture = serbian_new } religion = orthodox }
4369
+ }
4370
+ frloc_consort_masc_cons_0061_serbian_monarchy_PRINCE_CONSORT = { # "Prince consort"
4371
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
4372
+ }
4373
+ frloc_consort_fem_cons_0061_serbian_monarchy_VOJVODKINJA = { # "Vo飗odine"
4374
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
4375
+ }
4376
+ frloc_consort_fem_cons_0061_serbian_monarchy_KRALJICA = { # "Kraljitsa"
4377
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
4378
+ }
4379
+ frloc_consort_fem_cons_0061_serbian_monarchy_CARICA = { # "Tsarine"
4380
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = serbian primary_culture = serbian_new } }
4381
+ }
4382
+ frloc_consort_masc_cons_0062_byzantine_monarchy_PRINCE_CONSORT = { # "Prince consort"
4383
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
4384
+ }
4385
+ frloc_consort_fem_cons_0062_byzantine_monarchy_DESPOTISSA = { # "Despote"
4386
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
4387
+ }
4388
+ frloc_consort_fem_vow_0062_byzantine_monarchy_AUTOKRATEIRA = { # "Autocrate"
4389
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
4390
+ }
4391
+ frloc_consort_fem_cons_0062_byzantine_monarchy_BASILISSA = { # "Basilissa"
4392
+ AND = { government_rank = 3 government = monarchy OR = { tag = BYZ tag = TRE tag = EPI tag = MOE } }
4393
+ }
4394
+ frloc_consort_masc_cons_0063_greek_monarchy_DUKE_CONSORT = { # "Duc consort"
4395
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4396
+ }
4397
+ frloc_consort_masc_cons_0063_greek_monarchy_KING_CONSORT = { # "Roi consort"
4398
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4399
+ }
4400
+ frloc_consort_masc_vow_0063_greek_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4401
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4402
+ }
4403
+ frloc_consort_fem_cons_0063_greek_monarchy_DUCHESS = { # "Duchesse"
4404
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4405
+ }
4406
+ frloc_consort_fem_cons_0063_greek_monarchy_QUEEN = { # "Reine"
4407
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4408
+ }
4409
+ frloc_consort_fem_vow_0063_greek_monarchy_EMPRESS = { # "Imp閞atrice"
4410
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = greek primary_culture = pontic_greek } }
4411
+ }
4412
+ frloc_consort_masc_vow_0064_arakanese_monarchy_EMIR_CONSORT = { # "蒻ir consort"
4413
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ARK }
4414
+ }
4415
+ frloc_consort_masc_cons_0064_arakanese_monarchy_SULTAN_CONSORT = { # "Sultan consort"
4416
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy tag = ARK }
4417
+ }
4418
+ frloc_consort_fem_vow_0064_arakanese_monarchy_EMIRA = { # "蒻ira"
4419
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ARK }
4420
+ }
4421
+ frloc_consort_fem_cons_0064_arakanese_monarchy_SULTANA = { # "Sultane"
4422
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ARK }
4423
+ }
4424
+ frloc_consort_fem_cons_0064_arakanese_monarchy_GREAT_SULTANA = { # "Grande sultane"
4425
+ AND = { government_rank = 3 government = monarchy tag = ARK }
4426
+ }
4427
+ frloc_consort_masc_cons_0065_pangasinan_monarchy_PRINCE_CONSORT = { # "Prince consort"
4428
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PGS religion_group = eastern }
4429
+ }
4430
+ frloc_consort_masc_cons_0065_pangasinan_monarchy_KING_CONSORT = { # "Roi consort"
4431
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
4432
+ }
4433
+ frloc_consort_masc_vow_0065_pangasinan_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4434
+ AND = { government_rank = 3 government = monarchy tag = PGS religion_group = eastern }
4435
+ }
4436
+ frloc_consort_fem_cons_0065_pangasinan_monarchy_PRINCESS = { # "Princesse"
4437
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = PGS religion_group = eastern }
4438
+ }
4439
+ frloc_consort_fem_cons_0065_pangasinan_monarchy_QUEEN = { # "Reine"
4440
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = PGS religion_group = eastern }
4441
+ }
4442
+ frloc_consort_fem_vow_0065_pangasinan_monarchy_EMPRESS = { # "Imp閞atrice"
4443
+ AND = { government_rank = 3 government = monarchy tag = PGS religion_group = eastern }
4444
+ }
4445
+ frloc_consort_masc_cons_0066_albanian_monarchy_PRINCE_CONSORT = { # "Prince consort"
4446
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ALB }
4447
+ }
4448
+ frloc_consort_masc_cons_0066_albanian_monarchy_KING_CONSORT = { # "Roi consort"
4449
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ALB }
4450
+ }
4451
+ frloc_consort_masc_vow_0066_albanian_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4452
+ AND = { government_rank = 3 government = monarchy tag = ALB }
4453
+ }
4454
+ frloc_consort_fem_cons_0066_albanian_monarchy_PRINCESS = { # "Princesse"
4455
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ALB }
4456
+ }
4457
+ frloc_consort_fem_cons_0066_albanian_monarchy_QUEEN = { # "Reine"
4458
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ALB }
4459
+ }
4460
+ frloc_consort_fem_vow_0066_albanian_monarchy_EMPRESS = { # "Imp閞atrice"
4461
+ AND = { government_rank = 3 government = monarchy tag = ALB }
4462
+ }
4463
+ frloc_consort_masc_cons_0067_qing_monarchy_WANG = { # "Wang"
4464
+ AND = { OR = { government_rank = 1 government_rank = 2 } government = monarchy tag = QNG }
4465
+ }
4466
+ frloc_consort_masc_vow_0067_qing_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4467
+ AND = { government_rank = 3 government = monarchy tag = QNG }
4468
+ }
4469
+ frloc_consort_fem_cons_0067_qing_monarchy_GEGE = { # "Gege"
4470
+ AND = { OR = { government_rank = 1 government_rank = 2 } government = monarchy tag = QNG }
4471
+ }
4472
+ frloc_consort_fem_vow_0067_qing_monarchy_EMPRESS = { # "Imp閞atrice"
4473
+ AND = { government_rank = 3 government = monarchy tag = QNG }
4474
+ }
4475
+ frloc_consort_masc_cons_0068_egyptian_monarchy_CONSORT = { # "Consort"
4476
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
4477
+ }
4478
+ frloc_consort_masc_cons_0068_egyptian_monarchy_SULTAN_CONSORT = { # "Sultan consort"
4479
+ AND = { OR = { government_rank = 2 government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
4480
+ }
4481
+ frloc_consort_fem_cons_0068_egyptian_monarchy_CONSORT = { # "Consort"
4482
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
4483
+ }
4484
+ frloc_consort_fem_cons_0068_egyptian_monarchy_SULTANA = { # "Sultane"
4485
+ AND = { OR = { government_rank = 2 government_rank = 3 } NOT = { government_rank = 3 } OR = { has_reform = enlightened_despotism has_reform = letat_cest_moi_reform has_reform = regional_representation_reform } primary_culture = al_misr_arabic religion_group = muslim }
4486
+ }
4487
+ frloc_consort_masc_cons_0070_pagan_egyptian_monarchy_CONSORT = { # "Consort"
4488
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
4489
+ }
4490
+ frloc_consort_masc_cons_0070_pagan_egyptian_monarchy_KING_CONSORT = { # "Roi consort"
4491
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
4492
+ }
4493
+ frloc_consort_fem_cons_0070_pagan_egyptian_monarchy_CONSORT = { # "Consort"
4494
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
4495
+ }
4496
+ frloc_consort_fem_cons_0070_pagan_egyptian_monarchy_QUEEN = { # "Reine"
4497
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = al_misr_arabic religion = animism } primary_culture = old_egyptian } }
4498
+ }
4499
+ frloc_consort_masc_cons_0071_pagan_greek_monarchy_PRINCE_CONSORT = { # "Prince consort"
4500
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
4501
+ }
4502
+ frloc_consort_fem_cons_0071_pagan_greek_monarchy_PRINCESS = { # "Princesse"
4503
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
4504
+ }
4505
+ frloc_consort_fem_cons_0071_pagan_greek_monarchy_BASILISSA = { # "Basilissa"
4506
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy OR = { AND = { primary_culture = greek religion = animism } primary_culture = athenian primary_culture = spartan primary_culture = atlantean } }
4507
+ }
4508
+ frloc_consort_masc_cons_0072_pagan_roman_monarchy_CHIEF = { # "Chef"
4509
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4510
+ }
4511
+ frloc_consort_masc_cons_0072_pagan_roman_monarchy_REX = { # "Rex"
4512
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4513
+ }
4514
+ frloc_consort_masc_vow_0072_pagan_roman_monarchy_IMPERATOR = { # "Imperator"
4515
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4516
+ }
4517
+ frloc_consort_fem_cons_0072_pagan_roman_monarchy_CHIEFTESS = { # "Cheffe"
4518
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4519
+ }
4520
+ frloc_consort_fem_cons_0072_pagan_roman_monarchy_REGINA = { # "Regina"
4521
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4522
+ }
4523
+ frloc_consort_fem_vow_0072_pagan_roman_monarchy_IMPERATRIX = { # "Imperatrix"
4524
+ AND = { government_rank = 3 government = monarchy OR = { AND = { primary_culture = umbrian religion = animism } primary_culture = roman } }
4525
+ }
4526
+ frloc_consort_masc_cons_0073_jurchen_monarchy_BEILE = { # "Beile"
4527
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde primary_culture = manchu }
4528
+ }
4529
+ frloc_consort_masc_cons_0073_jurchen_monarchy_KHAN = { # "Kh鈔"
4530
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
4531
+ }
4532
+ frloc_consort_masc_cons_0073_jurchen_monarchy_KHAGAN = { # "Khagan"
4533
+ AND = { government_rank = 3 has_reform = steppe_horde primary_culture = manchu }
4534
+ }
4535
+ frloc_consort_fem_cons_0073_jurchen_monarchy_GEGE = { # "Gege"
4536
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde primary_culture = manchu }
4537
+ }
4538
+ frloc_consort_fem_cons_0073_jurchen_monarchy_KHANUM = { # "Khanoum"
4539
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = steppe_horde primary_culture = manchu }
4540
+ }
4541
+ frloc_consort_masc_cons_0074_romanian_monarchy_VOIVODE = { # "Vo飗ode"
4542
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = romanian }
4543
+ }
4544
+ frloc_consort_masc_cons_0074_romanian_monarchy_KRALJ = { # "Kralj"
4545
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = romanian }
4546
+ }
4547
+ frloc_consort_masc_cons_0074_romanian_monarchy_CAR = { # "Tsar"
4548
+ AND = { government_rank = 3 government = monarchy primary_culture = romanian }
4549
+ }
4550
+ frloc_consort_fem_cons_0074_romanian_monarchy_VOJVODKINJA = { # "Vo飗odine"
4551
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = romanian }
4552
+ }
4553
+ frloc_consort_fem_cons_0074_romanian_monarchy_KRALJICA = { # "Kraljitsa"
4554
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = romanian }
4555
+ }
4556
+ frloc_consort_fem_cons_0074_romanian_monarchy_CARICA = { # "Tsarine"
4557
+ AND = { government_rank = 3 government = monarchy primary_culture = romanian }
4558
+ }
4559
+ frloc_consort_masc_cons_0075_hyderabad_state_monarchy_NAWAB = { # "Nawab"
4560
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
4561
+ }
4562
+ frloc_consort_masc_cons_0075_hyderabad_state_monarchy_NIZAM = { # "Niz鈓"
4563
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
4564
+ }
4565
+ frloc_consort_masc_cons_0075_hyderabad_state_monarchy_PADISHAH = { # "P鈊ishah"
4566
+ AND = { government_rank = 3 government = monarchy tag = DEC }
4567
+ }
4568
+ frloc_consort_fem_cons_0075_hyderabad_state_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
4569
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = DEC }
4570
+ }
4571
+ frloc_consort_fem_cons_0075_hyderabad_state_monarchy_NIZAM_BEGUM = { # "Niz鈓 beg黰"
4572
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = DEC }
4573
+ }
4574
+ frloc_consort_fem_cons_0075_hyderabad_state_monarchy_PADISHAH_BEGUM = { # "Padish鈎 beg黰"
4575
+ AND = { government_rank = 3 government = monarchy tag = DEC }
4576
+ }
4577
+ frloc_consort_masc_cons_0076_muslim_indian_monarchy_MIRZA = { # "M顁z?
4578
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4579
+ }
4580
+ frloc_consort_masc_cons_0076_muslim_indian_monarchy_KHAN = { # "Kh鈔"
4581
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4582
+ }
4583
+ frloc_consort_masc_cons_0076_muslim_indian_monarchy_PADISHAH_CONSORT = { # "Padish鈎 consort"
4584
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4585
+ }
4586
+ frloc_consort_fem_cons_0076_muslim_indian_monarchy_NAWAB_BEGUM = { # "Nawab beg黰"
4587
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4588
+ }
4589
+ frloc_consort_fem_cons_0076_muslim_indian_monarchy_SULTANA_BEGUM = { # "Sultana beg黰"
4590
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4591
+ }
4592
+ frloc_consort_fem_cons_0076_muslim_indian_monarchy_PADISHAH_BEGUM = { # "Padish鈎 beg黰"
4593
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = dravidian culture_group = western_aryan culture_group = hindusthani culture_group = eastern_aryan has_reform = indian_sultanate_reform } religion_group = muslim }
4594
+ }
4595
+ frloc_consort_masc_cons_0077_bharat_monarchy_RAJA = { # "R鈐a"
4596
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BHA }
4597
+ }
4598
+ frloc_consort_masc_cons_0077_bharat_monarchy_MAHARAJA = { # "Mah鈘鈐a"
4599
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BHA }
4600
+ }
4601
+ frloc_consort_masc_cons_0077_bharat_monarchy_CHHATRAPATI = { # "Chhatrapati"
4602
+ AND = { government_rank = 3 government = monarchy tag = BHA }
4603
+ }
4604
+ frloc_consort_fem_cons_0077_bharat_monarchy_RANI = { # "R鈔i"
4605
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BHA }
4606
+ }
4607
+ frloc_consort_fem_cons_0077_bharat_monarchy_MAHARANI = { # "Mah鈘鈔?
4608
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BHA }
4609
+ }
4610
+ frloc_consort_fem_cons_0077_bharat_monarchy_CHHATRAPATI = { # "Chhatrapati"
4611
+ AND = { government_rank = 3 government = monarchy tag = BHA }
4612
+ }
4613
+ frloc_consort_masc_cons_0078_hindu_rajput_monarchy_RANA = { # "R鈔?
4614
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rajput religion = hinduism }
4615
+ }
4616
+ frloc_consort_masc_cons_0078_hindu_rajput_monarchy_MAHARANA = { # "Mah鈘鈔?
4617
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
4618
+ }
4619
+ frloc_consort_masc_cons_0078_hindu_rajput_monarchy_CHHATRAPATI = { # "Chhatrapati"
4620
+ AND = { government_rank = 3 government = monarchy primary_culture = rajput religion = hinduism }
4621
+ }
4622
+ frloc_consort_fem_cons_0078_hindu_rajput_monarchy_RANI = { # "R鈔i"
4623
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rajput religion = hinduism }
4624
+ }
4625
+ frloc_consort_fem_cons_0078_hindu_rajput_monarchy_MAHARANI = { # "Mah鈘鈔?
4626
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rajput religion = hinduism }
4627
+ }
4628
+ frloc_consort_fem_cons_0078_hindu_rajput_monarchy_CHHATRAPATI = { # "Chhatrapati"
4629
+ AND = { government_rank = 3 government = monarchy primary_culture = rajput religion = hinduism }
4630
+ }
4631
+ frloc_consort_masc_cons_0079_maratha_peshwas_RAJA = { # "R鈐a"
4632
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4633
+ }
4634
+ frloc_consort_masc_cons_0079_maratha_peshwas_MAHARAJA = { # "Mah鈘鈐a"
4635
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4636
+ }
4637
+ frloc_consort_masc_cons_0079_maratha_peshwas_PESHWA = { # "Peshw?
4638
+ AND = { government_rank = 3 OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4639
+ }
4640
+ frloc_consort_fem_cons_0079_maratha_peshwas_RANI = { # "R鈔i"
4641
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4642
+ }
4643
+ frloc_consort_fem_cons_0079_maratha_peshwas_MAHARANI = { # "Mah鈘鈔?
4644
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4645
+ }
4646
+ frloc_consort_fem_cons_0079_maratha_peshwas_PESHWIN = { # "Peshwin"
4647
+ AND = { government_rank = 3 OR = { has_reform = administrative_monarchy has_reform = clergy_in_administration_reform has_reform = of_noble_bearing_reform has_reform = meritocratic_focus_reform } primary_culture = marathi religion = hinduism }
4648
+ }
4649
+ frloc_consort_masc_cons_0080_hindu_maratha_monarchy_RAJA = { # "R鈐a"
4650
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = marathi religion = hinduism }
4651
+ }
4652
+ frloc_consort_masc_cons_0080_hindu_maratha_monarchy_MAHARAJA = { # "Mah鈘鈐a"
4653
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
4654
+ }
4655
+ frloc_consort_masc_cons_0080_hindu_maratha_monarchy_PESHWA = { # "Peshw?
4656
+ AND = { government_rank = 3 government = monarchy primary_culture = marathi religion = hinduism }
4657
+ }
4658
+ frloc_consort_fem_cons_0080_hindu_maratha_monarchy_RANI = { # "R鈔i"
4659
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = marathi religion = hinduism }
4660
+ }
4661
+ frloc_consort_fem_cons_0080_hindu_maratha_monarchy_MAHARANI = { # "Mah鈘鈔?
4662
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = marathi religion = hinduism }
4663
+ }
4664
+ frloc_consort_fem_cons_0080_hindu_maratha_monarchy_PESHWIN = { # "Peshwin"
4665
+ AND = { government_rank = 3 government = monarchy primary_culture = marathi religion = hinduism }
4666
+ }
4667
+ frloc_consort_masc_cons_0081_kaffa_monarchy_PRINCE_CONSORT = { # "Prince consort"
4668
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = KAF }
4669
+ }
4670
+ frloc_consort_masc_cons_0081_kaffa_monarchy_KING_CONSORT = { # "Roi consort"
4671
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = KAF }
4672
+ }
4673
+ frloc_consort_masc_vow_0081_kaffa_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4674
+ AND = { government_rank = 3 government = monarchy tag = KAF }
4675
+ }
4676
+ frloc_consort_fem_cons_0081_kaffa_monarchy_PRINCESS = { # "Princesse"
4677
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = KAF }
4678
+ }
4679
+ frloc_consort_fem_cons_0081_kaffa_monarchy_QUEEN = { # "Reine"
4680
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = KAF }
4681
+ }
4682
+ frloc_consort_fem_vow_0081_kaffa_monarchy_EMPRESS = { # "Imp閞atrice"
4683
+ AND = { government_rank = 3 government = monarchy tag = KAF }
4684
+ }
4685
+ frloc_consort_masc_cons_0082_ethiopian_monarchies_JANHOY = { # "Janhoy"
4686
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
4687
+ }
4688
+ frloc_consort_fem_vow_0082_ethiopian_monarchies_ITEGE = { # "Itege"
4689
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy religion_group = christian OR = { primary_culture = amhara primary_culture = sidamo primary_culture = tigray } }
4690
+ }
4691
+ frloc_consort_masc_cons_0083_nkore_monarchy_PRINCE = { # "Prince"
4692
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = NKO }
4693
+ }
4694
+ frloc_consort_masc_vow_0083_nkore_monarchy_MUGABE = { # "Omugabe"
4695
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = NKO }
4696
+ }
4697
+ frloc_consort_masc_cons_0083_nkore_monarchy_GREAT_MUGABE = { # "Grand omugabe"
4698
+ AND = { government_rank = 3 government = monarchy tag = NKO }
4699
+ }
4700
+ frloc_consort_fem_cons_0083_nkore_monarchy_PRINCESS = { # "Princesse"
4701
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = NKO }
4702
+ }
4703
+ frloc_consort_fem_vow_0083_nkore_monarchy_MUGO = { # "Omugo"
4704
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = NKO }
4705
+ }
4706
+ frloc_consort_fem_cons_0083_nkore_monarchy_GREAT_MUGO = { # "Grande omugo"
4707
+ AND = { government_rank = 3 government = monarchy tag = NKO }
4708
+ }
4709
+ frloc_consort_masc_cons_0084_bunyoro_monarchy_PRINCE = { # "Prince"
4710
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BNY }
4711
+ }
4712
+ frloc_consort_masc_vow_0084_bunyoro_monarchy_OMUKAMA = { # "Omukama"
4713
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BNY }
4714
+ }
4715
+ frloc_consort_masc_cons_0084_bunyoro_monarchy_GREAT_OMUKAMA = { # "Grand omukama"
4716
+ AND = { government_rank = 3 government = monarchy tag = BNY }
4717
+ }
4718
+ frloc_consort_fem_cons_0084_bunyoro_monarchy_PRINCESS = { # "Princesse"
4719
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BNY }
4720
+ }
4721
+ frloc_consort_fem_vow_0084_bunyoro_monarchy_MUGO = { # "Omugo"
4722
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BNY }
4723
+ }
4724
+ frloc_consort_fem_cons_0084_bunyoro_monarchy_GREAT_MUGO = { # "Grande omugo"
4725
+ AND = { government_rank = 3 government = monarchy tag = BNY }
4726
+ }
4727
+ frloc_consort_masc_cons_0085_lunda_monarchy_PRINCE_CONSORT = { # "Prince consort"
4728
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4729
+ }
4730
+ frloc_consort_masc_cons_0085_lunda_monarchy_KING_CONSORT = { # "Roi consort"
4731
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4732
+ }
4733
+ frloc_consort_masc_vow_0085_lunda_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4734
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4735
+ }
4736
+ frloc_consort_fem_cons_0085_lunda_monarchy_PRINCESS = { # "Princesse"
4737
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4738
+ }
4739
+ frloc_consort_fem_cons_0085_lunda_monarchy_QUEEN = { # "Reine"
4740
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4741
+ }
4742
+ frloc_consort_fem_vow_0085_lunda_monarchy_EMPRESS = { # "Imp閞atrice"
4743
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = lunda primary_culture = luba } }
4744
+ }
4745
+ frloc_consort_masc_cons_0086_mutapa_monarchy_PRINCE_CONSORT = { # "Prince consort"
4746
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ZIM }
4747
+ }
4748
+ frloc_consort_masc_cons_0086_mutapa_monarchy_KING_CONSORT = { # "Roi consort"
4749
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ZIM }
4750
+ }
4751
+ frloc_consort_masc_vow_0086_mutapa_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4752
+ AND = { government_rank = 3 government = monarchy tag = ZIM }
4753
+ }
4754
+ frloc_consort_fem_cons_0086_mutapa_monarchy_PRINCESS = { # "Princesse"
4755
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ZIM }
4756
+ }
4757
+ frloc_consort_fem_cons_0086_mutapa_monarchy_QUEEN = { # "Reine"
4758
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ZIM }
4759
+ }
4760
+ frloc_consort_fem_vow_0086_mutapa_monarchy_EMPRESS = { # "Imp閞atrice"
4761
+ AND = { government_rank = 3 government = monarchy tag = ZIM }
4762
+ }
4763
+ frloc_consort_masc_cons_0087_torwa_monarchy_PRINCE_CONSORT = { # "Prince consort"
4764
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = RZW }
4765
+ }
4766
+ frloc_consort_masc_cons_0087_torwa_monarchy_KING_CONSORT = { # "Roi consort"
4767
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = RZW }
4768
+ }
4769
+ frloc_consort_masc_vow_0087_torwa_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4770
+ AND = { government_rank = 3 government = monarchy tag = RZW }
4771
+ }
4772
+ frloc_consort_fem_cons_0087_torwa_monarchy_PRINCESS = { # "Princesse"
4773
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = RZW }
4774
+ }
4775
+ frloc_consort_fem_cons_0087_torwa_monarchy_QUEEN = { # "Reine"
4776
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = RZW }
4777
+ }
4778
+ frloc_consort_fem_vow_0087_torwa_monarchy_EMPRESS = { # "Imp閞atrice"
4779
+ AND = { government_rank = 3 government = monarchy tag = RZW }
4780
+ }
4781
+ frloc_consort_masc_cons_0088_rwanda_burundi_monarchy_PRINCE_CONSORT = { # "Prince consort"
4782
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rwandan }
4783
+ }
4784
+ frloc_consort_masc_cons_0088_rwanda_burundi_monarchy_KING_CONSORT = { # "Roi consort"
4785
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rwandan }
4786
+ }
4787
+ frloc_consort_masc_vow_0088_rwanda_burundi_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4788
+ AND = { government_rank = 3 government = monarchy primary_culture = rwandan }
4789
+ }
4790
+ frloc_consort_fem_cons_0088_rwanda_burundi_monarchy_PRINCESS = { # "Princesse"
4791
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = rwandan }
4792
+ }
4793
+ frloc_consort_fem_cons_0088_rwanda_burundi_monarchy_QUEEN = { # "Reine"
4794
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = rwandan }
4795
+ }
4796
+ frloc_consort_fem_vow_0088_rwanda_burundi_monarchy_EMPRESS = { # "Imp閞atrice"
4797
+ AND = { government_rank = 3 government = monarchy primary_culture = rwandan }
4798
+ }
4799
+ frloc_consort_masc_cons_0089_ganda_monarchy_PRINCE_CONSORT = { # "Prince consort"
4800
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = ganda }
4801
+ }
4802
+ frloc_consort_masc_cons_0089_ganda_monarchy_KING_CONSORT = { # "Roi consort"
4803
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = ganda }
4804
+ }
4805
+ frloc_consort_masc_vow_0089_ganda_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4806
+ AND = { government_rank = 3 government = monarchy primary_culture = ganda }
4807
+ }
4808
+ frloc_consort_fem_cons_0089_ganda_monarchy_PRINCESS = { # "Princesse"
4809
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = ganda }
4810
+ }
4811
+ frloc_consort_fem_cons_0089_ganda_monarchy_QUEEN = { # "Reine"
4812
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = ganda }
4813
+ }
4814
+ frloc_consort_fem_vow_0089_ganda_monarchy_EMPRESS = { # "Imp閞atrice"
4815
+ AND = { government_rank = 3 government = monarchy primary_culture = ganda }
4816
+ }
4817
+ frloc_consort_masc_cons_0090_antemoro_monarchy_PRINCE_CONSORT = { # "Prince consort"
4818
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ANT }
4819
+ }
4820
+ frloc_consort_masc_cons_0090_antemoro_monarchy_KING_CONSORT = { # "Roi consort"
4821
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ANT }
4822
+ }
4823
+ frloc_consort_masc_vow_0090_antemoro_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4824
+ AND = { government_rank = 3 government = monarchy tag = ANT }
4825
+ }
4826
+ frloc_consort_fem_cons_0090_antemoro_monarchy_PRINCESS = { # "Princesse"
4827
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = ANT }
4828
+ }
4829
+ frloc_consort_fem_cons_0090_antemoro_monarchy_QUEEN = { # "Reine"
4830
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = ANT }
4831
+ }
4832
+ frloc_consort_fem_vow_0090_antemoro_monarchy_EMPRESS = { # "Imp閞atrice"
4833
+ AND = { government_rank = 3 government = monarchy tag = ANT }
4834
+ }
4835
+ frloc_consort_masc_cons_0091_betsimisaraka_monarchy_PRINCE_CONSORT = { # "Prince consort"
4836
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BTS }
4837
+ }
4838
+ frloc_consort_masc_cons_0091_betsimisaraka_monarchy_KING_CONSORT = { # "Roi consort"
4839
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BTS }
4840
+ }
4841
+ frloc_consort_masc_vow_0091_betsimisaraka_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4842
+ AND = { government_rank = 3 government = monarchy tag = BTS }
4843
+ }
4844
+ frloc_consort_fem_cons_0091_betsimisaraka_monarchy_PRINCESS = { # "Princesse"
4845
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy tag = BTS }
4846
+ }
4847
+ frloc_consort_fem_cons_0091_betsimisaraka_monarchy_QUEEN = { # "Reine"
4848
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy tag = BTS }
4849
+ }
4850
+ frloc_consort_fem_vow_0091_betsimisaraka_monarchy_EMPRESS = { # "Imp閞atrice"
4851
+ AND = { government_rank = 3 government = monarchy tag = BTS }
4852
+ }
4853
+ frloc_consort_masc_cons_0092_filipino_rajanate_PRINCE_CONSORT = { # "Prince consort"
4854
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4855
+ }
4856
+ frloc_consort_masc_cons_0092_filipino_rajanate_RAJA = { # "R鈐a"
4857
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4858
+ }
4859
+ frloc_consort_masc_cons_0092_filipino_rajanate_MAHARAJA = { # "Mah鈘鈐a"
4860
+ AND = { government_rank = 3 government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4861
+ }
4862
+ frloc_consort_fem_cons_0092_filipino_rajanate_PRINCESS = { # "Princesse"
4863
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4864
+ }
4865
+ frloc_consort_fem_cons_0092_filipino_rajanate_RANI = { # "R鈔i"
4866
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4867
+ }
4868
+ frloc_consort_fem_cons_0092_filipino_rajanate_MAHARANI = { # "Mah鈘鈔?
4869
+ AND = { government_rank = 3 government = monarchy OR = { tag = BTU tag = MNA tag = CEB } }
4870
+ }
4871
+ frloc_consort_masc_cons_0093_shan_monarchy_PRINCE_CONSORT = { # "Prince consort"
4872
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = shan }
4873
+ }
4874
+ frloc_consort_masc_cons_0093_shan_monarchy_KING_CONSORT = { # "Roi consort"
4875
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = shan }
4876
+ }
4877
+ frloc_consort_masc_vow_0093_shan_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4878
+ AND = { government_rank = 3 government = monarchy primary_culture = shan }
4879
+ }
4880
+ frloc_consort_fem_cons_0093_shan_monarchy_PRINCESS = { # "Princesse"
4881
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = shan }
4882
+ }
4883
+ frloc_consort_fem_cons_0093_shan_monarchy_QUEEN = { # "Reine"
4884
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = shan }
4885
+ }
4886
+ frloc_consort_fem_vow_0093_shan_monarchy_EMPRESS = { # "Imp閞atrice"
4887
+ AND = { government_rank = 3 government = monarchy primary_culture = shan }
4888
+ }
4889
+ frloc_consort_masc_cons_0094_burman_monarchy_PRINCE_CONSORT = { # "Prince consort"
4890
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = burman }
4891
+ }
4892
+ frloc_consort_masc_cons_0094_burman_monarchy_KING_CONSORT = { # "Roi consort"
4893
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = burman }
4894
+ }
4895
+ frloc_consort_masc_vow_0094_burman_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
4896
+ AND = { government_rank = 3 government = monarchy culture_group = burman }
4897
+ }
4898
+ frloc_consort_fem_cons_0094_burman_monarchy_PRINCESS = { # "Princesse"
4899
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy culture_group = burman }
4900
+ }
4901
+ frloc_consort_fem_cons_0094_burman_monarchy_QUEEN = { # "Reine"
4902
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy culture_group = burman }
4903
+ }
4904
+ frloc_consort_fem_vow_0094_burman_monarchy_EMPRESS = { # "Imp閞atrice"
4905
+ AND = { government_rank = 3 government = monarchy culture_group = burman }
4906
+ }
4907
+ frloc_consort_masc_cons_0095_barangay_polity_PRINCE_CONSORT = { # "Prince consort"
4908
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4909
+ }
4910
+ frloc_consort_masc_cons_0095_barangay_polity_KING_CONSORT = { # "Roi consort"
4911
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4912
+ }
4913
+ frloc_consort_masc_vow_0095_barangay_polity_EMPEROR_CONSORT = { # "Empereur consort"
4914
+ AND = { government_rank = 3 OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4915
+ }
4916
+ frloc_consort_fem_cons_0095_barangay_polity_PRINCESS = { # "Princesse"
4917
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4918
+ }
4919
+ frloc_consort_fem_cons_0095_barangay_polity_QUEEN = { # "Reine"
4920
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4921
+ }
4922
+ frloc_consort_fem_vow_0095_barangay_polity_EMPRESS = { # "Imp閞atrice"
4923
+ AND = { government_rank = 3 OR = { government = monarchy government = republic } NOT = { tag = SUL } NOT = { tag = MGD } primary_culture = filipino }
4924
+ }
4925
+ frloc_consort_masc_cons_0096_south_slavic_monarchy_VOIVODE = { # "Vo飗ode"
4926
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4927
+ }
4928
+ frloc_consort_masc_cons_0096_south_slavic_monarchy_KRALJ = { # "Kralj"
4929
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4930
+ }
4931
+ frloc_consort_masc_cons_0096_south_slavic_monarchy_CAR = { # "Tsar"
4932
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4933
+ }
4934
+ frloc_consort_fem_cons_0096_south_slavic_monarchy_VOJVODKINJA = { # "Vo飗odine"
4935
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4936
+ }
4937
+ frloc_consort_fem_cons_0096_south_slavic_monarchy_KRALJICA = { # "Kraljitsa"
4938
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4939
+ }
4940
+ frloc_consort_fem_cons_0096_south_slavic_monarchy_CARICA = { # "Tsarine"
4941
+ AND = { government_rank = 3 government = monarchy OR = { primary_culture = croatian_new primary_culture = serbian_new primary_culture = slovene_new primary_culture = bosnian_new primary_culture = bulgarian_new culture_group = south_slavic } NOT = { tag = CLI } }
4942
+ }
4943
+ frloc_consort_masc_cons_0097_irish_peerage_monarchy_EARL = { # "Comte"
4944
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4945
+ }
4946
+ frloc_consort_masc_cons_0097_irish_peerage_monarchy_HIGH_KING = { # "Haut roi"
4947
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4948
+ }
4949
+ frloc_consort_masc_vow_0097_irish_peerage_monarchy_EMPEROR = { # "Empereur"
4950
+ AND = { government_rank = 3 government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4951
+ }
4952
+ frloc_consort_fem_cons_0097_irish_peerage_monarchy_COUNTESS = { # "Comtesse"
4953
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4954
+ }
4955
+ frloc_consort_fem_cons_0097_irish_peerage_monarchy_HIGH_QUEEN = { # "Haute reine"
4956
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4957
+ }
4958
+ frloc_consort_fem_vow_0097_irish_peerage_monarchy_EMPRESS = { # "Imp閞atrice"
4959
+ AND = { government_rank = 3 government = monarchy primary_culture = irish OR = { tag = DMS tag = ORD tag = KID tag = ULS } }
4960
+ }
4961
+ frloc_consort_masc_cons_0098_irish_clan_monarchy_KING = { # "Roi"
4962
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish }
4963
+ }
4964
+ frloc_consort_masc_cons_0098_irish_clan_monarchy_HIGH_KING = { # "Haut roi"
4965
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish }
4966
+ }
4967
+ frloc_consort_masc_vow_0098_irish_clan_monarchy_EMPEROR = { # "Empereur"
4968
+ AND = { government_rank = 3 government = monarchy primary_culture = irish }
4969
+ }
4970
+ frloc_consort_fem_cons_0098_irish_clan_monarchy_QUEEN = { # "Reine"
4971
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = irish }
4972
+ }
4973
+ frloc_consort_fem_cons_0098_irish_clan_monarchy_HIGH_QUEEN = { # "Haute reine"
4974
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = irish }
4975
+ }
4976
+ frloc_consort_fem_vow_0098_irish_clan_monarchy_EMPRESS = { # "Imp閞atrice"
4977
+ AND = { government_rank = 3 government = monarchy primary_culture = irish }
4978
+ }
4979
+ frloc_consort_masc_cons_0099_hebridean_monarchy_LORD = { # "Seigneur"
4980
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = highland_scottish }
4981
+ }
4982
+ frloc_consort_masc_cons_0099_hebridean_monarchy_KING = { # "Roi"
4983
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = highland_scottish }
4984
+ }
4985
+ frloc_consort_masc_vow_0099_hebridean_monarchy_EMPEROR = { # "Empereur"
4986
+ AND = { government_rank = 3 government = monarchy primary_culture = highland_scottish }
4987
+ }
4988
+ frloc_consort_fem_cons_0099_hebridean_monarchy_LADY = { # "Dame"
4989
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy primary_culture = highland_scottish }
4990
+ }
4991
+ frloc_consort_fem_cons_0099_hebridean_monarchy_QUEEN = { # "Reine"
4992
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy primary_culture = highland_scottish }
4993
+ }
4994
+ frloc_consort_fem_vow_0099_hebridean_monarchy_EMPRESS = { # "Imp閞atrice"
4995
+ AND = { government_rank = 3 government = monarchy primary_culture = highland_scottish }
4996
+ }
4997
+ frloc_consort_masc_cons_0100_muscovite_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
4998
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
4999
+ }
5000
+ frloc_consort_masc_cons_0100_muscovite_monarchy_TSAR = { # "Tsar"
5001
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
5002
+ }
5003
+ frloc_consort_fem_cons_0100_muscovite_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
5004
+ AND = { OR = { government_rank = 1 government_rank = 2 } NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom } tag = MOS }
5005
+ }
5006
+ frloc_consort_fem_cons_0100_muscovite_monarchy_TSARITSA = { # "Tsarine"
5007
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom } tag = MOS }
5008
+ }
5009
+ frloc_consort_masc_cons_0101_russian_monarchy_KNIAZ = { # "Kn鑪e"
5010
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5011
+ }
5012
+ frloc_consort_masc_cons_0101_russian_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
5013
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5014
+ }
5015
+ frloc_consort_masc_cons_0101_russian_monarchy_TSAR = { # "Tsar"
5016
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5017
+ }
5018
+ frloc_consort_fem_cons_0101_russian_monarchy_KNIAGINIA = { # "Kniaguinia"
5019
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5020
+ }
5021
+ frloc_consort_fem_cons_0101_russian_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
5022
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5023
+ }
5024
+ frloc_consort_fem_cons_0101_russian_monarchy_TSARITSA = { # "Tsarine"
5025
+ AND = { government_rank = 3 OR = { has_reform = principality has_reform = tsardom has_reform = ruthenian_tsardom } }
5026
+ }
5027
+ frloc_consort_masc_cons_0102_russian_feudal_monarchy_KNIAZ = { # "Kn鑪e"
5028
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5029
+ }
5030
+ frloc_consort_masc_cons_0102_russian_feudal_monarchy_GREAT_KNIAZ = { # "Grand kn鑪e"
5031
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5032
+ }
5033
+ frloc_consort_masc_vow_0102_russian_feudal_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
5034
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5035
+ }
5036
+ frloc_consort_fem_cons_0102_russian_feudal_monarchy_KNIAGINIA = { # "Kniaguinia"
5037
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5038
+ }
5039
+ frloc_consort_fem_cons_0102_russian_feudal_monarchy_GREAT_KNIAGINIA = { # "Grande kniaguinia"
5040
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5041
+ }
5042
+ frloc_consort_fem_vow_0102_russian_feudal_monarchy_EMPRESS = { # "Imp閞atrice"
5043
+ AND = { government_rank = 3 government = monarchy OR = { culture_group = east_slavic culture_group = slavic tag = PRM } NOT = { primary_culture = polish_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = croatian_new } NOT = { primary_culture = serbian_new } NOT = { primary_culture = slovene_new } NOT = { primary_culture = bosnian_new } NOT = { primary_culture = bulgarian_new } }
5044
+ }
5045
+ frloc_consort_masc_cons_0103_inti_monarchy_PRINCE_CONSORT = { # "Prince consort"
5046
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = inti }
5047
+ }
5048
+ frloc_consort_masc_cons_0103_inti_monarchy_KING_CONSORT = { # "Roi consort"
5049
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = inti }
5050
+ }
5051
+ frloc_consort_masc_vow_0103_inti_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
5052
+ AND = { government_rank = 3 government = monarchy religion = inti }
5053
+ }
5054
+ frloc_consort_fem_cons_0103_inti_monarchy_PRINCESS = { # "Princesse"
5055
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = inti }
5056
+ }
5057
+ frloc_consort_fem_cons_0103_inti_monarchy_QUEEN = { # "Reine"
5058
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy religion = inti }
5059
+ }
5060
+ frloc_consort_fem_vow_0103_inti_monarchy_EMPRESS = { # "Imp閞atrice"
5061
+ AND = { government_rank = 3 government = monarchy religion = inti }
5062
+ }
5063
+ frloc_consort_masc_cons_0104_mayan_monarchy_PRINCE_CONSORT = { # "Prince consort"
5064
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5065
+ }
5066
+ frloc_consort_masc_cons_0104_mayan_monarchy_KING_CONSORT = { # "Roi consort"
5067
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5068
+ }
5069
+ frloc_consort_masc_vow_0104_mayan_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
5070
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5071
+ }
5072
+ frloc_consort_fem_cons_0104_mayan_monarchy_PRINCESS = { # "Princesse"
5073
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5074
+ }
5075
+ frloc_consort_fem_cons_0104_mayan_monarchy_QUEEN = { # "Reine"
5076
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5077
+ }
5078
+ frloc_consort_fem_vow_0104_mayan_monarchy_EMPRESS = { # "Imp閞atrice"
5079
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal } religion = mesoamerican_religion }
5080
+ }
5081
+ frloc_consort_masc_cons_0105_nahuatl_monarchy_PRINCE_CONSORT = { # "Prince consort"
5082
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5083
+ }
5084
+ frloc_consort_masc_cons_0105_nahuatl_monarchy_KING_CONSORT = { # "Roi consort"
5085
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5086
+ }
5087
+ frloc_consort_masc_vow_0105_nahuatl_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
5088
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5089
+ }
5090
+ frloc_consort_fem_cons_0105_nahuatl_monarchy_PRINCESS = { # "Princesse"
5091
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5092
+ }
5093
+ frloc_consort_fem_cons_0105_nahuatl_monarchy_QUEEN = { # "Reine"
5094
+ AND = { government_rank = 2 NOT = { government_rank = 3 } OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5095
+ }
5096
+ frloc_consort_fem_vow_0105_nahuatl_monarchy_EMPRESS = { # "Imp閞atrice"
5097
+ AND = { government_rank = 3 OR = { government = monarchy government = tribal has_reform = tribal_democracy_legacy } religion = nahuatl }
5098
+ }
5099
+ frloc_consort_masc_cons_0106_chinese_monarchy_CONSORT = { # "Consort"
5100
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = east_asian }
5101
+ }
5102
+ frloc_consort_fem_cons_0106_chinese_monarchy_CONSORT = { # "Consort"
5103
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = monarchy culture_group = east_asian }
5104
+ }
5105
+ frloc_consort_masc_cons_0107_hindu_monarchy_RAJA = { # "R鈐a"
5106
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = hinduism }
5107
+ }
5108
+ frloc_consort_masc_cons_0107_hindu_monarchy_MAHARAJA = { # "Mah鈘鈐a"
5109
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy religion = hinduism }
5110
+ }
5111
+ frloc_consort_fem_cons_0107_hindu_monarchy_RANI = { # "R鈔i"
5112
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy religion = hinduism }
5113
+ }
5114
+ frloc_consort_fem_cons_0107_hindu_monarchy_MAHARANI = { # "Mah鈘鈔?
5115
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy religion = hinduism }
5116
+ }
5117
+ frloc_consort_masc_cons_0108_buddhist_monarchy_PRINCE_CONSORT = { # "Prince consort"
5118
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5119
+ }
5120
+ frloc_consort_masc_cons_0108_buddhist_monarchy_KING_CONSORT = { # "Roi consort"
5121
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5122
+ }
5123
+ frloc_consort_masc_vow_0108_buddhist_monarchy_EMPEROR_CONSORT = { # "Empereur consort"
5124
+ AND = { government_rank = 3 government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5125
+ }
5126
+ frloc_consort_fem_cons_0108_buddhist_monarchy_PRINCESS = { # "Princesse"
5127
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5128
+ }
5129
+ frloc_consort_fem_cons_0108_buddhist_monarchy_QUEEN = { # "Reine"
5130
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5131
+ }
5132
+ frloc_consort_fem_vow_0108_buddhist_monarchy_EMPRESS = { # "Imp閞atrice"
5133
+ AND = { government_rank = 3 government = monarchy NOT = { government = tribal } OR = { religion = buddhism religion = vajrayana religion = mahayana } }
5134
+ }
5135
+ frloc_consort_masc_vow_0109_muslim_monarchy_EMIR_CONSORT = { # "蒻ir consort"
5136
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
5137
+ }
5138
+ frloc_consort_masc_cons_0109_muslim_monarchy_SULTAN_CONSORT = { # "Sultan consort"
5139
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
5140
+ }
5141
+ frloc_consort_fem_vow_0109_muslim_monarchy_EMIRA = { # "蒻ira"
5142
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
5143
+ }
5144
+ frloc_consort_fem_cons_0109_muslim_monarchy_SULTANA = { # "Sultane"
5145
+ AND = { OR = { government_rank = 2 government_rank = 3 } government = monarchy NOT = { has_reform = steppe_horde } religion_group = muslim NOT = { has_reform = feudal_theocracy } }
5146
+ }
5147
+ frloc_consort_masc_cons_0126_march_eastern_christian_monarchy_PRINCE_CONSORT = { # "Prince consort"
5148
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
5149
+ }
5150
+ frloc_consort_fem_cons_0126_march_eastern_christian_monarchy_PRINCESS = { # "Princesse"
5151
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy NOT = { has_reform = principality } OR = { religion = coptic religion = orthodox } is_march = yes }
5152
+ }
5153
+ frloc_consort_masc_cons_0127b_gov_japanese_divine_empire_KOSEI = { # "K魋ei"
5154
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
5155
+ }
5156
+ frloc_consort_fem_cons_0127b_gov_japanese_divine_empire_KOGO = { # "K鬵?
5157
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = japanese_divine_empire }
5158
+ }
5159
+
5160
+
5161
+ ### MIDDLE PRIORITY / PRIORIT?INTERM蒁IAIRE = 01_government_names.txt ###
5162
+
5163
+ frloc_consort_masc_cons_1001_gov_steppe_horde_BEILE = { # "Beile"
5164
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
5165
+ }
5166
+ frloc_consort_masc_cons_1001_gov_steppe_horde_KHAN = { # "Kh鈔"
5167
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
5168
+ }
5169
+ frloc_consort_masc_cons_1001_gov_steppe_horde_KHAGAN = { # "Khagan"
5170
+ AND = { government_rank = 3 has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
5171
+ }
5172
+ frloc_consort_fem_cons_1001_gov_steppe_horde_GEGE = { # "Gege"
5173
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
5174
+ }
5175
+ frloc_consort_fem_cons_1001_gov_steppe_horde_KHANUM = { # "Khanoum"
5176
+ AND = { OR = { government_rank = 2 government_rank = 3 } has_reform = steppe_horde OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } }
5177
+ }
5178
+ frloc_consort_masc_cons_1002_gov_native_council_CONSORT = { # "Consort"
5179
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
5180
+ }
5181
+ frloc_consort_fem_cons_1002_gov_native_council_CONSORT = { # "Consort"
5182
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { government = native has_reform = siberian_tribe has_reform = native_basic_reform AND = { has_reform = steppe_horde NOT = { OR = { culture_group = altaic culture_group = tartar primary_culture = altaic_new } } } } }
5183
+ }
5184
+ frloc_consort_masc_cons_1011_gov_daimyo_LORD = { # "Seigneur"
5185
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
5186
+ }
5187
+ frloc_consort_fem_cons_1011_gov_daimyo_LADY = { # "Dame"
5188
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = daimyo }
5189
+ }
5190
+ frloc_consort_masc_cons_1011b_gov_appanage_DUKE = { # "Duc"
5191
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
5192
+ }
5193
+ frloc_consort_fem_cons_1011b_gov_appanage_DUCHESS = { # "Duchesse"
5194
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = appanage_reform }
5195
+ }
5196
+ frloc_consort_masc_cons_1012_gov_indep_daimyo_LORD = { # "Seigneur"
5197
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
5198
+ }
5199
+ frloc_consort_fem_cons_1012_gov_indep_daimyo_LADY = { # "Dame"
5200
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = indep_daimyo }
5201
+ }
5202
+ frloc_consort_masc_cons_1013_gov_shogunate_LORD = { # "Seigneur"
5203
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
5204
+ }
5205
+ frloc_consort_fem_cons_1013_gov_shogunate_LADY = { # "Dame"
5206
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = shogunate }
5207
+ }
5208
+ frloc_consort_masc_cons_1014_gov_tribal_kingdom_CONSORT = { # "Consort"
5209
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_kingdom }
5210
+ }
5211
+ frloc_consort_masc_cons_1014_gov_tribal_kingdom_KING_CONSORT = { # "Roi consort"
5212
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_kingdom }
5213
+ }
5214
+ frloc_consort_masc_vow_1014_gov_tribal_kingdom_EMPEROR_CONSORT = { # "Empereur consort"
5215
+ AND = { government_rank = 3 has_reform = tribal_kingdom }
5216
+ }
5217
+ frloc_consort_fem_cons_1014_gov_tribal_kingdom_CONSORT = { # "Consort"
5218
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = tribal_kingdom }
5219
+ }
5220
+ frloc_consort_fem_cons_1014_gov_tribal_kingdom_QUEEN = { # "Reine"
5221
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = tribal_kingdom }
5222
+ }
5223
+ frloc_consort_fem_vow_1014_gov_tribal_kingdom_EMPRESS = { # "Imp閞atrice"
5224
+ AND = { government_rank = 3 has_reform = tribal_kingdom }
5225
+ }
5226
+ frloc_consort_masc_cons_1015_gov_tribal_CONSORT = { # "Consort"
5227
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
5228
+ }
5229
+ frloc_consort_fem_cons_1015_gov_tribal_CONSORT = { # "Consort"
5230
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } OR = { has_reform = tribal_despotism has_reform = tribal_federation } }
5231
+ }
5232
+ frloc_consort_masc_cons_1018_hre_county_PRINCE_CONSORT = { # "Prince consort"
5233
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
5234
+ }
5235
+ frloc_consort_fem_cons_1018_hre_county_COUNTESS = { # "Comtesse"
5236
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
5237
+ }
5238
+ frloc_consort_fem_cons_1018_hre_county_QUEEN_CONSORT = { # "Reine consort"
5239
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
5240
+ }
5241
+ frloc_consort_fem_vow_1018_hre_county_EMPRESS_CONSORT = { # "Imp閞atrice consort"
5242
+ AND = { government_rank = 3 has_reform = monarchy_mechanic is_part_of_hre = yes NOT = { total_development = 50 } }
5243
+ }
5244
+ frloc_consort_masc_cons_1035_ibadi_theocracy_CONSORT = { # "Consort"
5245
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
5246
+ }
5247
+ frloc_consort_fem_cons_1035_ibadi_theocracy_CONSORT = { # "Consort"
5248
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = ibadi OR = { government = theocracy has_reform = feudal_theocracy } }
5249
+ }
5250
+ frloc_consort_masc_cons_1036_yemenite_theocracy_CONSORT = { # "Consort"
5251
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
5252
+ }
5253
+ frloc_consort_fem_cons_1036_yemenite_theocracy_CONSORT = { # "Consort"
5254
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = shiite OR = { government = theocracy has_reform = feudal_theocracy } primary_culture = yemeni_culture }
5255
+ }
5256
+ frloc_consort_masc_cons_1039_sunni_theocracy_CONSORT = { # "Consort"
5257
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
5258
+ }
5259
+ frloc_consort_fem_cons_1039_sunni_theocracy_CONSORT = { # "Consort"
5260
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } religion = sunni OR = { has_reform = feudal_theocracy government = theocracy } }
5261
+ }
5262
+ frloc_consort_masc_cons_1045_gov_jarldom_CONSORT = { # "Consort"
5263
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5264
+ }
5265
+ frloc_consort_masc_cons_1045_gov_jarldom_KING = { # "Roi"
5266
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5267
+ }
5268
+ frloc_consort_masc_vow_1045_gov_jarldom_EMPEROR = { # "Empereur"
5269
+ AND = { government_rank = 3 government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5270
+ }
5271
+ frloc_consort_fem_cons_1045_gov_jarldom_CONSORT = { # "Consort"
5272
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5273
+ }
5274
+ frloc_consort_fem_cons_1045_gov_jarldom_QUEEN = { # "Reine"
5275
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5276
+ }
5277
+ frloc_consort_fem_vow_1045_gov_jarldom_EMPRESS = { # "Imp閞atrice"
5278
+ AND = { government_rank = 3 government = monarchy OR = { religion = norse_pagan_reformed culture = norse } }
5279
+ }
5280
+
5281
+
5282
+ ### LOWER PRIORITY / PRIORIT?BASSE = zz_default_government_names.txt ###
5283
+
5284
+ frloc_consort_masc_cons_2001_default_monarchy_PRINCE_CONSORT = { # "Prince consort"
5285
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } has_reform = monarchy_mechanic }
5286
+ }
5287
+ frloc_consort_fem_cons_2001_default_monarchy_CONSORT = { # "Consort"
5288
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } has_reform = monarchy_mechanic }
5289
+ }
5290
+ frloc_consort_fem_cons_2001_default_monarchy_QUEEN_CONSORT = { # "Reine consort"
5291
+ AND = { government_rank = 2 NOT = { government_rank = 3 } has_reform = monarchy_mechanic }
5292
+ }
5293
+ frloc_consort_fem_vow_2001_default_monarchy_EMPRESS_CONSORT = { # "Imp閞atrice consort"
5294
+ AND = { government_rank = 3 has_reform = monarchy_mechanic }
5295
+ }
5296
+ frloc_consort_masc_cons_2004_default_tribal_PRINCE_CONSORT = { # "Prince consort"
5297
+ AND = { OR = { government_rank = 1 government_rank = 2 government_rank = 3 } government = tribal }
5298
+ }
5299
+ frloc_consort_fem_cons_2004_default_tribal_CONSORT = { # "Consort"
5300
+ AND = { government_rank = 1 NOT = { OR = { government_rank = 2 government_rank = 3 } } government = tribal }
5301
+ }
5302
+ frloc_consort_fem_cons_2004_default_tribal_QUEEN_CONSORT = { # "Reine consort"
5303
+ AND = { government_rank = 2 NOT = { government_rank = 3 } government = tribal }
5304
+ }
5305
+ frloc_consort_fem_vow_2004_default_tribal_EMPRESS_CONSORT = { # "Imp閞atrice consort"
5306
+ AND = { government_rank = 3 government = tribal }
5307
+ }
5308
+
5309
+
5
5310
 
6
5311
  #####################################################
7
5312
  ### Nation Articles // Articles pour les pays ###
@@ -15,12 +5320,68 @@ frloc_tags_art_sg_masc_cons_au_01a = {
15
5320
  NOT = { has_country_flag = is_china_flag }
16
5321
  NOT = { has_country_flag = is_revolutionary_china_flag }
17
5322
  NOT = { has_country_flag = is_gurkani_flag }
5323
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
18
5324
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
19
- NOT = { has_country_flag = is_hanseatic_league_flag }
5325
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5326
+ NOT = { has_country_flag = is_FBE_flag }
5327
+ NOT = { has_country_flag = is_EY0_flag }
5328
+ NOT = { has_country_flag = is_EY1_flag }
5329
+ NOT = { has_country_flag = is_EY2_flag }
5330
+ NOT = { has_country_flag = is_EY3_flag }
5331
+ NOT = { has_country_flag = is_EY4_flag }
5332
+ NOT = { has_country_flag = is_EY5_flag }
5333
+ NOT = { has_country_flag = is_EY6_flag }
5334
+ NOT = { has_country_flag = is_EY7_flag }
5335
+ NOT = { has_country_flag = is_E11_flag }
5336
+ NOT = { has_country_flag = is_E12_flag }
5337
+ NOT = { has_country_flag = is_E13_flag }
5338
+ NOT = { has_country_flag = is_E14_flag }
5339
+ NOT = { has_country_flag = is_E15_flag }
5340
+ NOT = { has_country_flag = is_E16_flag }
5341
+ NOT = { has_country_flag = is_E17_flag }
5342
+ NOT = { has_country_flag = is_TRK_flag }
5343
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5344
+ NOT = { has_country_flag = ave_empire_name }
5345
+ NOT = { has_country_flag = ave_state_name }
5346
+ NOT = { has_country_flag = is_FB1_flag }
5347
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5348
+ NOT = { has_country_flag = is_JPE_flag }
5349
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5350
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5351
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5352
+ NOT = { has_country_flag = is_RPR_flag }
5353
+ NOT = { has_country_flag = is_LPC_flag }
5354
+ NOT = { has_country_flag = is_EY8_flag }
5355
+ NOT = { has_country_flag = is_EY9_flag }
5356
+ NOT = { has_country_flag = is_E10_flag }
5357
+ NOT = { has_country_flag = ave_republic_name }
5358
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5359
+ NOT = { has_country_flag = is_NCP_flag }
5360
+ NOT = { has_country_flag = change_name_NPI_flag }
5361
+ NOT = { has_country_flag = is_KLU_flag }
20
5362
  NOT = { has_country_flag = is_kingdom_of_god_flag }
21
5363
  NOT = { has_country_flag = is_turkey_flag }
22
5364
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
5365
+ NOT = { has_country_flag = is_burma }
5366
+ NOT = { has_country_flag = is_SIQ_flag }
5367
+ NOT = { has_country_flag = is_FB2_flag }
23
5368
  NOT = { has_country_flag = unified_islam }
5369
+ NOT = { has_country_flag = is_ramannadesa }
5370
+ NOT = { has_country_flag = is_dai_nam_flag }
5371
+ NOT = { has_country_flag = is_viet_nam_flag }
5372
+ NOT = { has_country_flag = is_nusantara_flag }
5373
+ NOT = { has_country_flag = ave_duchy_name }
5374
+ NOT = { has_country_flag = is_KRJ_flag }
5375
+ NOT = { has_country_flag = is_JPS_flag }
5376
+ NOT = { has_country_flag = is_FB3_flag }
5377
+ NOT = { has_country_flag = is_hariphunchai }
5378
+ NOT = { has_country_flag = is_dvaravati }
5379
+ NOT = { has_country_flag = is_srijivaya_flag }
5380
+ NOT = { has_country_flag = is_pue_flag }
5381
+ NOT = { has_country_flag = is_LJN_flag }
5382
+ NOT = { has_country_flag = ave_theocracy_name }
5383
+ NOT = { has_country_flag = is_iran_flag }
5384
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
24
5385
  OR = {
25
5386
  ### USUAL PRIORITY ###
26
5387
  # Scandinavia / Scandinavie
@@ -28,7 +5389,7 @@ frloc_tags_art_sg_masc_cons_au_01a = {
28
5389
  # Balkans
29
5390
  tag = MON
30
5391
  # British Isles / 頻es Britanniques
31
- tag = LEI tag = WLS tag = KID tag = SLN tag = DMS tag = MNS tag = MTH tag = TYR tag = CNN tag = MCM tag = TRY
5392
+ tag = AVE tag = CNN tag = DMS tag = KID tag = LEI tag = MCM tag = MNS tag = MTH tag = SLN tag = TRY tag = TYR tag = WLS
32
5393
  # Colonies
33
5394
  tag = BRZ tag = CAN tag = CHL tag = MEX tag = PEU tag = PRG tag = QUE tag = SNA tag = TEX tag = VNZ tag = VRM
34
5395
  # HRE / Saint-Empire
@@ -50,19 +5411,19 @@ frloc_tags_art_sg_masc_cons_au_01a = {
50
5411
  # Persia / Perse
51
5412
  tag = BPI tag = FRS tag = GAZ tag = KHO tag = KRY tag = LRI tag = SIS tag = TAB
52
5413
  # Africa / Afrique
53
- tag = BEN tag = JOL tag = KBO tag = KON tag = LOA tag = MAL tag = SOK tag = SON tag = ZIM
5414
+ tag = BEN tag = GUR tag = GZI tag = JOL tag = KBO tag = KIT tag = KON tag = LOA tag = MAL tag = SOK tag = SON tag = WAD tag = ZIM tag = ZND
54
5415
  # East African Additions / Ajouts en Afrique orientale
55
- tag = BTI tag = DAR tag = GLE tag = HDY tag = JJI tag = KAF tag = MED tag = MJE tag = MRE tag = SOA tag = WAR
5416
+ tag = BTI tag = DAR tag = GLE tag = HDY tag = JJI tag = KAF tag = MED tag = MRE tag = SOA tag = WAR
56
5417
  # Kongo, Great Lakes & Central Africa / Congo, Grands Lacs et Afrique centrale
57
- tag = BSG tag = BUG tag = BUU tag = KLD tag = KRW tag = KSJ tag = KZB tag = NKO tag = RWA tag = RZW
5418
+ tag = BNY tag = BSG tag = BUG tag = BUU tag = KLD tag = KRW tag = KSJ tag = KZB tag = NKO tag = RWA tag = RZW tag = UBH
58
5419
  # African Additions / Ajouts en Afrique
59
5420
  tag = BON tag = DAH tag = DGB tag = KBU tag = NDO tag = YAT tag = ZAF
60
5421
  # Madagascar
61
5422
  tag = SKA
62
5423
  # Far East / Extr阭e-Orient
63
- tag = ANN tag = BEI tag = CHA tag = DAI tag = JAP tag = LNA tag = LXA tag = TIB tag = TOK
5424
+ tag = CHA tag = DAI tag = JAP tag = KEL tag = LNA tag = LXA tag = SIA tag = TIB tag = TOK
64
5425
  # Indochina Additions / Ajouts en Indochine
65
- tag = KED tag = LIG tag = MPH tag = PRK
5426
+ tag = KED tag = LIG tag = PRK
66
5427
  # Great Tibet tags / Tibet
67
5428
  tag = KAM tag = UTS
68
5429
  # India / Inde
@@ -77,13 +5438,69 @@ frloc_tags_art_sg_masc_cons_dansle_01b = {
77
5438
  NOT = { has_country_flag = is_china_flag }
78
5439
  NOT = { has_country_flag = is_revolutionary_china_flag }
79
5440
  NOT = { has_country_flag = is_gurkani_flag }
5441
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
80
5442
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
81
- NOT = { has_country_flag = is_hanseatic_league_flag }
5443
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5444
+ NOT = { has_country_flag = is_FBE_flag }
5445
+ NOT = { has_country_flag = is_EY0_flag }
5446
+ NOT = { has_country_flag = is_EY1_flag }
5447
+ NOT = { has_country_flag = is_EY2_flag }
5448
+ NOT = { has_country_flag = is_EY3_flag }
5449
+ NOT = { has_country_flag = is_EY4_flag }
5450
+ NOT = { has_country_flag = is_EY5_flag }
5451
+ NOT = { has_country_flag = is_EY6_flag }
5452
+ NOT = { has_country_flag = is_EY7_flag }
5453
+ NOT = { has_country_flag = is_E11_flag }
5454
+ NOT = { has_country_flag = is_E12_flag }
5455
+ NOT = { has_country_flag = is_E13_flag }
5456
+ NOT = { has_country_flag = is_E14_flag }
5457
+ NOT = { has_country_flag = is_E15_flag }
5458
+ NOT = { has_country_flag = is_E16_flag }
5459
+ NOT = { has_country_flag = is_E17_flag }
5460
+ NOT = { has_country_flag = is_TRK_flag }
5461
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5462
+ NOT = { has_country_flag = ave_empire_name }
5463
+ NOT = { has_country_flag = ave_state_name }
5464
+ NOT = { has_country_flag = is_FB1_flag }
5465
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5466
+ NOT = { has_country_flag = is_JPE_flag }
5467
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5468
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5469
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5470
+ NOT = { has_country_flag = is_RPR_flag }
5471
+ NOT = { has_country_flag = is_LPC_flag }
5472
+ NOT = { has_country_flag = is_EY8_flag }
5473
+ NOT = { has_country_flag = is_EY9_flag }
5474
+ NOT = { has_country_flag = is_E10_flag }
5475
+ NOT = { has_country_flag = ave_republic_name }
5476
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5477
+ NOT = { has_country_flag = is_NCP_flag }
5478
+ NOT = { has_country_flag = change_name_NPI_flag }
5479
+ NOT = { has_country_flag = is_KLU_flag }
82
5480
  NOT = { has_country_flag = is_turkey_flag }
83
5481
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
5482
+ NOT = { has_country_flag = is_burma }
5483
+ NOT = { has_country_flag = is_SIQ_flag }
5484
+ NOT = { has_country_flag = is_FB2_flag }
5485
+ NOT = { has_country_flag = is_hariphunchai }
5486
+ NOT = { has_country_flag = is_dvaravati }
5487
+ NOT = { has_country_flag = is_srijivaya_flag }
5488
+ NOT = { has_country_flag = is_pue_flag }
5489
+ NOT = { has_country_flag = is_LJN_flag }
5490
+ NOT = { has_country_flag = ave_theocracy_name }
5491
+ NOT = { has_country_flag = is_iran_flag }
5492
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
84
5493
  OR = {
85
5494
  has_country_flag = is_kingdom_of_god_flag
86
5495
  has_country_flag = unified_islam
5496
+ has_country_flag = is_ramannadesa
5497
+ has_country_flag = is_dai_nam_flag
5498
+ has_country_flag = is_viet_nam_flag
5499
+ has_country_flag = is_nusantara_flag
5500
+ has_country_flag = ave_duchy_name
5501
+ has_country_flag = is_KRJ_flag
5502
+ has_country_flag = is_JPS_flag
5503
+ has_country_flag = is_FB3_flag
87
5504
  ### USUAL PRIORITY ###
88
5505
  # France
89
5506
  tag = BER tag = BOU tag = DAU tag = NEV tag = SPI
@@ -99,12 +5516,68 @@ frloc_tags_art_sg_masc_cons_en_01c = {
99
5516
  NOT = { has_country_flag = is_china_flag }
100
5517
  NOT = { has_country_flag = is_revolutionary_china_flag }
101
5518
  NOT = { has_country_flag = is_gurkani_flag }
5519
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
102
5520
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
103
- NOT = { has_country_flag = is_hanseatic_league_flag }
5521
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5522
+ NOT = { has_country_flag = is_FBE_flag }
5523
+ NOT = { has_country_flag = is_EY0_flag }
5524
+ NOT = { has_country_flag = is_EY1_flag }
5525
+ NOT = { has_country_flag = is_EY2_flag }
5526
+ NOT = { has_country_flag = is_EY3_flag }
5527
+ NOT = { has_country_flag = is_EY4_flag }
5528
+ NOT = { has_country_flag = is_EY5_flag }
5529
+ NOT = { has_country_flag = is_EY6_flag }
5530
+ NOT = { has_country_flag = is_EY7_flag }
5531
+ NOT = { has_country_flag = is_E11_flag }
5532
+ NOT = { has_country_flag = is_E12_flag }
5533
+ NOT = { has_country_flag = is_E13_flag }
5534
+ NOT = { has_country_flag = is_E14_flag }
5535
+ NOT = { has_country_flag = is_E15_flag }
5536
+ NOT = { has_country_flag = is_E16_flag }
5537
+ NOT = { has_country_flag = is_E17_flag }
5538
+ NOT = { has_country_flag = is_TRK_flag }
5539
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5540
+ NOT = { has_country_flag = ave_empire_name }
5541
+ NOT = { has_country_flag = ave_state_name }
5542
+ NOT = { has_country_flag = is_FB1_flag }
5543
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5544
+ NOT = { has_country_flag = is_JPE_flag }
5545
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5546
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5547
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5548
+ NOT = { has_country_flag = is_RPR_flag }
5549
+ NOT = { has_country_flag = is_LPC_flag }
5550
+ NOT = { has_country_flag = is_EY8_flag }
5551
+ NOT = { has_country_flag = is_EY9_flag }
5552
+ NOT = { has_country_flag = is_E10_flag }
5553
+ NOT = { has_country_flag = ave_republic_name }
5554
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5555
+ NOT = { has_country_flag = is_NCP_flag }
5556
+ NOT = { has_country_flag = change_name_NPI_flag }
5557
+ NOT = { has_country_flag = is_KLU_flag }
104
5558
  NOT = { has_country_flag = is_kingdom_of_god_flag }
105
5559
  NOT = { has_country_flag = is_turkey_flag }
106
5560
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
5561
+ NOT = { has_country_flag = is_burma }
5562
+ NOT = { has_country_flag = is_SIQ_flag }
5563
+ NOT = { has_country_flag = is_FB2_flag }
107
5564
  NOT = { has_country_flag = unified_islam }
5565
+ NOT = { has_country_flag = is_ramannadesa }
5566
+ NOT = { has_country_flag = is_dai_nam_flag }
5567
+ NOT = { has_country_flag = is_viet_nam_flag }
5568
+ NOT = { has_country_flag = is_nusantara_flag }
5569
+ NOT = { has_country_flag = ave_duchy_name }
5570
+ NOT = { has_country_flag = is_KRJ_flag }
5571
+ NOT = { has_country_flag = is_JPS_flag }
5572
+ NOT = { has_country_flag = is_FB3_flag }
5573
+ NOT = { has_country_flag = is_hariphunchai }
5574
+ NOT = { has_country_flag = is_dvaravati }
5575
+ NOT = { has_country_flag = is_srijivaya_flag }
5576
+ NOT = { has_country_flag = is_pue_flag }
5577
+ NOT = { has_country_flag = is_LJN_flag }
5578
+ NOT = { has_country_flag = ave_theocracy_name }
5579
+ NOT = { has_country_flag = is_iran_flag }
5580
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
108
5581
  OR = {
109
5582
  ### USUAL PRIORITY ###
110
5583
  # HRE / Saint-Empire
@@ -119,12 +5592,68 @@ frloc_tags_art_sg_masc_vow_en_02a = {
119
5592
  NOT = { has_country_flag = is_china_flag }
120
5593
  NOT = { has_country_flag = is_revolutionary_china_flag }
121
5594
  NOT = { has_country_flag = is_gurkani_flag }
5595
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
122
5596
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
123
- NOT = { has_country_flag = is_hanseatic_league_flag }
5597
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5598
+ NOT = { has_country_flag = is_FBE_flag }
5599
+ NOT = { has_country_flag = is_EY0_flag }
5600
+ NOT = { has_country_flag = is_EY1_flag }
5601
+ NOT = { has_country_flag = is_EY2_flag }
5602
+ NOT = { has_country_flag = is_EY3_flag }
5603
+ NOT = { has_country_flag = is_EY4_flag }
5604
+ NOT = { has_country_flag = is_EY5_flag }
5605
+ NOT = { has_country_flag = is_EY6_flag }
5606
+ NOT = { has_country_flag = is_EY7_flag }
5607
+ NOT = { has_country_flag = is_E11_flag }
5608
+ NOT = { has_country_flag = is_E12_flag }
5609
+ NOT = { has_country_flag = is_E13_flag }
5610
+ NOT = { has_country_flag = is_E14_flag }
5611
+ NOT = { has_country_flag = is_E15_flag }
5612
+ NOT = { has_country_flag = is_E16_flag }
5613
+ NOT = { has_country_flag = is_E17_flag }
5614
+ NOT = { has_country_flag = is_TRK_flag }
5615
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5616
+ NOT = { has_country_flag = ave_empire_name }
5617
+ NOT = { has_country_flag = ave_state_name }
5618
+ NOT = { has_country_flag = is_FB1_flag }
5619
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5620
+ NOT = { has_country_flag = is_JPE_flag }
5621
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5622
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5623
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5624
+ NOT = { has_country_flag = is_RPR_flag }
5625
+ NOT = { has_country_flag = is_LPC_flag }
5626
+ NOT = { has_country_flag = is_EY8_flag }
5627
+ NOT = { has_country_flag = is_EY9_flag }
5628
+ NOT = { has_country_flag = is_E10_flag }
5629
+ NOT = { has_country_flag = ave_republic_name }
5630
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5631
+ NOT = { has_country_flag = is_NCP_flag }
5632
+ NOT = { has_country_flag = change_name_NPI_flag }
5633
+ NOT = { has_country_flag = is_KLU_flag }
124
5634
  NOT = { has_country_flag = is_kingdom_of_god_flag }
125
5635
  NOT = { has_country_flag = is_turkey_flag }
126
5636
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
5637
+ NOT = { has_country_flag = is_burma }
5638
+ NOT = { has_country_flag = is_SIQ_flag }
5639
+ NOT = { has_country_flag = is_FB2_flag }
127
5640
  NOT = { has_country_flag = unified_islam }
5641
+ NOT = { has_country_flag = is_ramannadesa }
5642
+ NOT = { has_country_flag = is_dai_nam_flag }
5643
+ NOT = { has_country_flag = is_viet_nam_flag }
5644
+ NOT = { has_country_flag = is_nusantara_flag }
5645
+ NOT = { has_country_flag = ave_duchy_name }
5646
+ NOT = { has_country_flag = is_KRJ_flag }
5647
+ NOT = { has_country_flag = is_JPS_flag }
5648
+ NOT = { has_country_flag = is_FB3_flag }
5649
+ NOT = { has_country_flag = is_hariphunchai }
5650
+ NOT = { has_country_flag = is_dvaravati }
5651
+ NOT = { has_country_flag = is_srijivaya_flag }
5652
+ NOT = { has_country_flag = is_pue_flag }
5653
+ NOT = { has_country_flag = is_LJN_flag }
5654
+ NOT = { has_country_flag = ave_theocracy_name }
5655
+ NOT = { has_country_flag = is_iran_flag }
5656
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
128
5657
  OR = {
129
5658
  ### USUAL PRIORITY ###
130
5659
  # Balkans
@@ -140,17 +5669,37 @@ frloc_tags_art_sg_masc_vow_en_02a = {
140
5669
  # Persia / Perse
141
5670
  tag = AFG
142
5671
  # Africa / Afrique
143
- tag = ADA tag = AJU
5672
+ tag = ADA tag = AJU tag = ENA tag = OGD
144
5673
  # Madagascar
145
5674
  tag = MIR
146
5675
  # Far East / Extr阭e-Orient
147
- tag = ARK
5676
+ tag = ANN tag = ARK
148
5677
  # Great Tibet tags / Tibet
149
5678
  tag = PHA
150
5679
  # India / Inde
151
5680
  tag = ASS tag = ORI tag = YOR
152
5681
  # ???
153
5682
  tag = HIN
5683
+ # Dynamic Tags - SAVE Trading Cities AND Amerindian Federations
5684
+ AND = {
5685
+ is_dynamic_tag = yes
5686
+ NOT = {
5687
+ OR = {
5688
+ # NOT Amerindian Federations
5689
+ tag = F00 tag = F01 tag = F02 tag = F03 tag = F04 tag = F05 tag = F06 tag = F07 tag = F08 tag = F09
5690
+ tag = F10 tag = F11 tag = F12 tag = F13 tag = F14 tag = F15 tag = F16 tag = F17 tag = F18 tag = F19
5691
+ # NOT Trading Cities
5692
+ tag = T00 tag = T01 tag = T02 tag = T03 tag = T04 tag = T05 tag = T06 tag = T07 tag = T08 tag = T09
5693
+ tag = T10 tag = T11 tag = T12 tag = T13 tag = T14 tag = T15 tag = T16 tag = T17 tag = T18 tag = T19
5694
+ tag = T20 tag = T21 tag = T22 tag = T23 tag = T24 tag = T25 tag = T26 tag = T27 tag = T28 tag = T29
5695
+ tag = T30 tag = T31 tag = T32 tag = T33 tag = T34 tag = T35 tag = T36 tag = T37 tag = T38 tag = T39
5696
+ tag = T40 tag = T41 tag = T42 tag = T43 tag = T44 tag = T45 tag = T46 tag = T47 tag = T48 tag = T49
5697
+ tag = T50 tag = T51 tag = T52 tag = T53 tag = T54 tag = T55 tag = T56 tag = T57 tag = T58 tag = T59
5698
+ tag = T60 tag = T61 tag = T62 tag = T63 tag = T64 tag = T65 tag = T66 tag = T67 tag = T68 tag = T69
5699
+ tag = T70 tag = T71 tag = T72 tag = T73 tag = T74
5700
+ }
5701
+ }
5702
+ }
154
5703
  }
155
5704
  }
156
5705
 
@@ -160,21 +5709,83 @@ frloc_tags_art_sg_masc_vow_dansl_02b = {
160
5709
  # override_country_name
161
5710
  NOT = { has_country_flag = is_china_flag }
162
5711
  NOT = { has_country_flag = is_revolutionary_china_flag }
163
- NOT = { has_country_flag = is_hanseatic_league_flag }
5712
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5713
+ NOT = { has_country_flag = is_RPR_flag }
5714
+ NOT = { has_country_flag = is_LPC_flag }
5715
+ NOT = { has_country_flag = is_EY8_flag }
5716
+ NOT = { has_country_flag = is_EY9_flag }
5717
+ NOT = { has_country_flag = is_E10_flag }
5718
+ NOT = { has_country_flag = ave_republic_name }
5719
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5720
+ NOT = { has_country_flag = is_NCP_flag }
5721
+ NOT = { has_country_flag = change_name_NPI_flag }
5722
+ NOT = { has_country_flag = is_KLU_flag }
164
5723
  NOT = { has_country_flag = is_kingdom_of_god_flag }
165
5724
  NOT = { has_country_flag = is_turkey_flag }
166
5725
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
5726
+ NOT = { has_country_flag = is_burma }
5727
+ NOT = { has_country_flag = is_SIQ_flag }
5728
+ NOT = { has_country_flag = is_FB2_flag }
167
5729
  NOT = { has_country_flag = unified_islam }
5730
+ NOT = { has_country_flag = is_ramannadesa }
5731
+ NOT = { has_country_flag = is_dai_nam_flag }
5732
+ NOT = { has_country_flag = is_viet_nam_flag }
5733
+ NOT = { has_country_flag = is_nusantara_flag }
5734
+ NOT = { has_country_flag = ave_duchy_name }
5735
+ NOT = { has_country_flag = is_KRJ_flag }
5736
+ NOT = { has_country_flag = is_JPS_flag }
5737
+ NOT = { has_country_flag = is_FB3_flag }
5738
+ NOT = { has_country_flag = is_hariphunchai }
5739
+ NOT = { has_country_flag = is_dvaravati }
5740
+ NOT = { has_country_flag = is_srijivaya_flag }
5741
+ NOT = { has_country_flag = is_pue_flag }
5742
+ NOT = { has_country_flag = is_LJN_flag }
5743
+ NOT = { has_country_flag = ave_theocracy_name }
5744
+ NOT = { has_country_flag = is_iran_flag }
5745
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
168
5746
  OR = {
169
5747
  has_country_flag = is_gurkani_flag
5748
+ has_country_flag = renamed_to_north_sea_empire
170
5749
  has_country_flag = is_revolutionary_gurkani_flag
5750
+ has_country_flag = is_majapahit_empire_flag
5751
+ has_country_flag = is_FBE_flag
5752
+ has_country_flag = is_EY0_flag
5753
+ has_country_flag = is_EY1_flag
5754
+ has_country_flag = is_EY2_flag
5755
+ has_country_flag = is_EY3_flag
5756
+ has_country_flag = is_EY4_flag
5757
+ has_country_flag = is_EY5_flag
5758
+ has_country_flag = is_EY6_flag
5759
+ has_country_flag = is_EY7_flag
5760
+ has_country_flag = is_E11_flag
5761
+ has_country_flag = is_E12_flag
5762
+ has_country_flag = is_E13_flag
5763
+ has_country_flag = is_E14_flag
5764
+ has_country_flag = is_E15_flag
5765
+ has_country_flag = is_E16_flag
5766
+ has_country_flag = is_E17_flag
5767
+ has_country_flag = is_TRK_flag
5768
+ has_country_flag = KOJ_overriden_name_flag
5769
+ has_country_flag = ave_empire_name
5770
+ has_country_flag = ave_state_name
5771
+ has_country_flag = is_FB1_flag
5772
+ has_country_flag = is_BYZ_eastern_roman_empire_flag
5773
+ has_country_flag = is_JPE_flag
5774
+ has_country_flag = is_revolutionary_iran_flag
5775
+ has_country_flag = is_SELJUK_EMPIRE_flag
171
5776
  ### USUAL PRIORITY ###
5777
+ # Balkans
5778
+ tag = LAE
172
5779
  # Colonies
173
5780
  tag = ILI
174
5781
  # Eastern Europe / Europe orientale
175
5782
  tag = LIV tag = TEU
5783
+ # Africa / Afrique
5784
+ tag = RZI
176
5785
  # African Additions / Ajouts en Afrique
177
5786
  tag = AIR
5787
+ # East African Additions / Ajouts en Afrique orientale
5788
+ tag = AFA
178
5789
  # ???
179
5790
  tag = ROM
180
5791
  # 1.27 steppe tags
@@ -182,27 +5793,160 @@ frloc_tags_art_sg_masc_vow_dansl_02b = {
182
5793
  }
183
5794
  }
184
5795
 
5796
+ frloc_tags_art_sg_masc_vow_en_02c = {
5797
+ # Ex.: L'Iran / l'honneur DE L'Iran / le tr鬾e D'Iran / arriver EN Iran / demander ?L'Iran / NOUVEL-Iran
5798
+ ### HIGHER PRIORITY ###
5799
+ # override_country_name
5800
+ NOT = { has_country_flag = is_china_flag }
5801
+ NOT = { has_country_flag = is_revolutionary_china_flag }
5802
+ NOT = { has_country_flag = is_gurkani_flag }
5803
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
5804
+ NOT = { has_country_flag = is_revolutionary_gurkani_flag }
5805
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5806
+ NOT = { has_country_flag = is_FBE_flag }
5807
+ NOT = { has_country_flag = is_EY0_flag }
5808
+ NOT = { has_country_flag = is_EY1_flag }
5809
+ NOT = { has_country_flag = is_EY2_flag }
5810
+ NOT = { has_country_flag = is_EY3_flag }
5811
+ NOT = { has_country_flag = is_EY4_flag }
5812
+ NOT = { has_country_flag = is_EY5_flag }
5813
+ NOT = { has_country_flag = is_EY6_flag }
5814
+ NOT = { has_country_flag = is_EY7_flag }
5815
+ NOT = { has_country_flag = is_E11_flag }
5816
+ NOT = { has_country_flag = is_E12_flag }
5817
+ NOT = { has_country_flag = is_E13_flag }
5818
+ NOT = { has_country_flag = is_E14_flag }
5819
+ NOT = { has_country_flag = is_E15_flag }
5820
+ NOT = { has_country_flag = is_E16_flag }
5821
+ NOT = { has_country_flag = is_E17_flag }
5822
+ NOT = { has_country_flag = is_TRK_flag }
5823
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5824
+ NOT = { has_country_flag = ave_empire_name }
5825
+ NOT = { has_country_flag = ave_state_name }
5826
+ NOT = { has_country_flag = is_FB1_flag }
5827
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5828
+ NOT = { has_country_flag = is_JPE_flag }
5829
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5830
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5831
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5832
+ NOT = { has_country_flag = is_RPR_flag }
5833
+ NOT = { has_country_flag = is_LPC_flag }
5834
+ NOT = { has_country_flag = is_EY8_flag }
5835
+ NOT = { has_country_flag = is_EY9_flag }
5836
+ NOT = { has_country_flag = is_E10_flag }
5837
+ NOT = { has_country_flag = ave_republic_name }
5838
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5839
+ NOT = { has_country_flag = is_NCP_flag }
5840
+ NOT = { has_country_flag = change_name_NPI_flag }
5841
+ NOT = { has_country_flag = is_KLU_flag }
5842
+ NOT = { has_country_flag = is_kingdom_of_god_flag }
5843
+ NOT = { has_country_flag = is_turkey_flag }
5844
+ NOT = { has_country_flag = is_revolutionary_turkey_flag }
5845
+ NOT = { has_country_flag = is_burma }
5846
+ NOT = { has_country_flag = is_SIQ_flag }
5847
+ NOT = { has_country_flag = is_FB2_flag }
5848
+ NOT = { has_country_flag = unified_islam }
5849
+ NOT = { has_country_flag = is_ramannadesa }
5850
+ NOT = { has_country_flag = is_dai_nam_flag }
5851
+ NOT = { has_country_flag = is_viet_nam_flag }
5852
+ NOT = { has_country_flag = is_nusantara_flag }
5853
+ NOT = { has_country_flag = ave_duchy_name }
5854
+ NOT = { has_country_flag = is_KRJ_flag }
5855
+ NOT = { has_country_flag = is_JPS_flag }
5856
+ NOT = { has_country_flag = is_FB3_flag }
5857
+ NOT = { has_country_flag = is_hariphunchai }
5858
+ NOT = { has_country_flag = is_dvaravati }
5859
+ NOT = { has_country_flag = is_srijivaya_flag }
5860
+ NOT = { has_country_flag = is_pue_flag }
5861
+ NOT = { has_country_flag = is_LJN_flag }
5862
+ NOT = { has_country_flag = ave_theocracy_name }
5863
+ OR = {
5864
+ has_country_flag = is_iran_flag
5865
+ has_country_flag = is_ERANSHAHR_flag
5866
+ ### USUAL PRIORITY ###
5867
+ # Persia
5868
+ tag = ERS
5869
+ }
5870
+ }
5871
+
5872
+
185
5873
  frloc_tags_art_sg_fem_cons_de_en_03a = {
186
5874
  # Ex.: LA Finlande / l'honneur DE LA Finlande / le tr鬾e DE Finlande / arriver EN Finlande / demander ?LA Finlande / NOUVELLE-Finlande
187
5875
  ### HIGHER PRIORITY ###
188
5876
  # override_country_name
189
5877
  NOT = { has_country_flag = is_gurkani_flag }
5878
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
190
5879
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
191
- NOT = { has_country_flag = is_hanseatic_league_flag }
5880
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5881
+ NOT = { has_country_flag = is_FBE_flag }
5882
+ NOT = { has_country_flag = is_EY0_flag }
5883
+ NOT = { has_country_flag = is_EY1_flag }
5884
+ NOT = { has_country_flag = is_EY2_flag }
5885
+ NOT = { has_country_flag = is_EY3_flag }
5886
+ NOT = { has_country_flag = is_EY4_flag }
5887
+ NOT = { has_country_flag = is_EY5_flag }
5888
+ NOT = { has_country_flag = is_EY6_flag }
5889
+ NOT = { has_country_flag = is_EY7_flag }
5890
+ NOT = { has_country_flag = is_E11_flag }
5891
+ NOT = { has_country_flag = is_E12_flag }
5892
+ NOT = { has_country_flag = is_E13_flag }
5893
+ NOT = { has_country_flag = is_E14_flag }
5894
+ NOT = { has_country_flag = is_E15_flag }
5895
+ NOT = { has_country_flag = is_E16_flag }
5896
+ NOT = { has_country_flag = is_E17_flag }
5897
+ NOT = { has_country_flag = is_TRK_flag }
5898
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
5899
+ NOT = { has_country_flag = ave_empire_name }
5900
+ NOT = { has_country_flag = ave_state_name }
5901
+ NOT = { has_country_flag = is_FB1_flag }
5902
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
5903
+ NOT = { has_country_flag = is_JPE_flag }
5904
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
5905
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
5906
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
5907
+ NOT = { has_country_flag = is_RPR_flag }
5908
+ NOT = { has_country_flag = is_LPC_flag }
5909
+ NOT = { has_country_flag = is_EY8_flag }
5910
+ NOT = { has_country_flag = is_EY9_flag }
5911
+ NOT = { has_country_flag = is_E10_flag }
5912
+ NOT = { has_country_flag = ave_republic_name }
5913
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
5914
+ NOT = { has_country_flag = is_NCP_flag }
5915
+ NOT = { has_country_flag = change_name_NPI_flag }
5916
+ NOT = { has_country_flag = is_KLU_flag }
192
5917
  NOT = { has_country_flag = is_kingdom_of_god_flag }
193
5918
  NOT = { has_country_flag = unified_islam }
5919
+ NOT = { has_country_flag = is_ramannadesa }
5920
+ NOT = { has_country_flag = is_dai_nam_flag }
5921
+ NOT = { has_country_flag = is_viet_nam_flag }
5922
+ NOT = { has_country_flag = is_nusantara_flag }
5923
+ NOT = { has_country_flag = ave_duchy_name }
5924
+ NOT = { has_country_flag = is_KRJ_flag }
5925
+ NOT = { has_country_flag = is_JPS_flag }
5926
+ NOT = { has_country_flag = is_FB3_flag }
5927
+ NOT = { has_country_flag = is_hariphunchai }
5928
+ NOT = { has_country_flag = is_dvaravati }
5929
+ NOT = { has_country_flag = is_srijivaya_flag }
5930
+ NOT = { has_country_flag = is_pue_flag }
5931
+ NOT = { has_country_flag = is_LJN_flag }
5932
+ NOT = { has_country_flag = ave_theocracy_name }
5933
+ NOT = { has_country_flag = is_iran_flag }
5934
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
194
5935
  OR = {
195
5936
  has_country_flag = is_china_flag
196
5937
  has_country_flag = is_revolutionary_china_flag
197
5938
  has_country_flag = is_turkey_flag
198
5939
  has_country_flag = is_revolutionary_turkey_flag
5940
+ has_country_flag = is_burma
5941
+ has_country_flag = is_SIQ_flag
5942
+ has_country_flag = is_FB2_flag
199
5943
  ### USUAL PRIORITY ###
200
5944
  # Scandinavia / Scandinavie
201
- tag = FIN tag = KRL tag = LVA tag = NOR tag = SCA tag = SWE
5945
+ tag = FIN tag = KRL tag = LTG tag = LVA tag = NOR tag = SCA tag = SWE
202
5946
  # Balkans
203
5947
  tag = BOS tag = BUL tag = CRO tag = CRT tag = DAL tag = GRE tag = HUN tag = MOE tag = MOL tag = RMN tag = SER tag = TRA tag = WAL
204
5948
  # British Isles / 頻es Britanniques
205
- tag = GBR tag = HSC tag = KOI tag = NOL
5949
+ tag = EIC tag = GBR tag = HSC tag = KOI tag = NOL
206
5950
  # Colonies
207
5951
  tag = CAL tag = COL tag = CSC tag = FLO tag = LOU tag = NZL
208
5952
  # Eastern Europe / Europe orientale
@@ -225,6 +5969,10 @@ frloc_tags_art_sg_fem_cons_de_en_03a = {
225
5969
  tag = KBA tag = TRP
226
5970
  # Persia / Perse
227
5971
  tag = CIR tag = PER tag = TRS
5972
+ # Africa / Afrique
5973
+ tag = NBI tag = SOM
5974
+ # East African Additions / Ajouts en Afrique orientale
5975
+ tag = MJE
228
5976
  # Far East / Extr阭e-Orient
229
5977
  tag = KOR
230
5978
  # India / Inde
@@ -241,13 +5989,69 @@ frloc_tags_art_sg_fem_cons_dela_auseindela_03b = {
241
5989
  NOT = { has_country_flag = is_china_flag }
242
5990
  NOT = { has_country_flag = is_revolutionary_china_flag }
243
5991
  NOT = { has_country_flag = is_gurkani_flag }
5992
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
244
5993
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
5994
+ NOT = { has_country_flag = is_majapahit_empire_flag }
5995
+ NOT = { has_country_flag = is_FBE_flag }
5996
+ NOT = { has_country_flag = is_EY0_flag }
5997
+ NOT = { has_country_flag = is_EY1_flag }
5998
+ NOT = { has_country_flag = is_EY2_flag }
5999
+ NOT = { has_country_flag = is_EY3_flag }
6000
+ NOT = { has_country_flag = is_EY4_flag }
6001
+ NOT = { has_country_flag = is_EY5_flag }
6002
+ NOT = { has_country_flag = is_EY6_flag }
6003
+ NOT = { has_country_flag = is_EY7_flag }
6004
+ NOT = { has_country_flag = is_E11_flag }
6005
+ NOT = { has_country_flag = is_E12_flag }
6006
+ NOT = { has_country_flag = is_E13_flag }
6007
+ NOT = { has_country_flag = is_E14_flag }
6008
+ NOT = { has_country_flag = is_E15_flag }
6009
+ NOT = { has_country_flag = is_E16_flag }
6010
+ NOT = { has_country_flag = is_E17_flag }
6011
+ NOT = { has_country_flag = is_TRK_flag }
6012
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6013
+ NOT = { has_country_flag = ave_empire_name }
6014
+ NOT = { has_country_flag = ave_state_name }
6015
+ NOT = { has_country_flag = is_FB1_flag }
6016
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6017
+ NOT = { has_country_flag = is_JPE_flag }
6018
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6019
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
245
6020
  NOT = { has_country_flag = is_kingdom_of_god_flag }
246
6021
  NOT = { has_country_flag = is_turkey_flag }
247
6022
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6023
+ NOT = { has_country_flag = is_burma }
6024
+ NOT = { has_country_flag = is_SIQ_flag }
6025
+ NOT = { has_country_flag = is_FB2_flag }
248
6026
  NOT = { has_country_flag = unified_islam }
6027
+ NOT = { has_country_flag = is_ramannadesa }
6028
+ NOT = { has_country_flag = is_dai_nam_flag }
6029
+ NOT = { has_country_flag = is_viet_nam_flag }
6030
+ NOT = { has_country_flag = is_nusantara_flag }
6031
+ NOT = { has_country_flag = ave_duchy_name }
6032
+ NOT = { has_country_flag = is_KRJ_flag }
6033
+ NOT = { has_country_flag = is_JPS_flag }
6034
+ NOT = { has_country_flag = is_FB3_flag }
6035
+ NOT = { has_country_flag = is_hariphunchai }
6036
+ NOT = { has_country_flag = is_NCP_flag }
6037
+ NOT = { has_country_flag = change_name_NPI_flag }
6038
+ NOT = { has_country_flag = is_KLU_flag }
6039
+ NOT = { has_country_flag = is_dvaravati }
6040
+ NOT = { has_country_flag = is_srijivaya_flag }
6041
+ NOT = { has_country_flag = is_pue_flag }
6042
+ NOT = { has_country_flag = is_LJN_flag }
6043
+ NOT = { has_country_flag = ave_theocracy_name }
6044
+ NOT = { has_country_flag = is_iran_flag }
6045
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
249
6046
  OR = {
250
- has_country_flag = is_hanseatic_league_flag
6047
+ OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag }
6048
+ has_country_flag = is_RPR_flag
6049
+ has_country_flag = is_LPC_flag
6050
+ has_country_flag = is_EY8_flag
6051
+ has_country_flag = is_EY9_flag
6052
+ has_country_flag = is_E10_flag
6053
+ has_country_flag = ave_republic_name
6054
+ has_country_flag = is_GREAT_ARMENIA_flag
251
6055
  ### USUAL PRIORITY ###
252
6056
  # Eastern Europe / Europe orientale
253
6057
  tag = PLC
@@ -257,6 +6061,9 @@ frloc_tags_art_sg_fem_cons_dela_auseindela_03b = {
257
6061
  tag = MSY
258
6062
  # Pirate tags
259
6063
  tag = NSS
6064
+ # Dynamic Tags - Native Federations
6065
+ tag = F00 tag = F01 tag = F02 tag = F03 tag = F04 tag = F05 tag = F06 tag = F07 tag = F08 tag = F09
6066
+ tag = F10 tag = F11 tag = F12 tag = F13 tag = F14 tag = F15 tag = F16 tag = F17 tag = F18 tag = F19
260
6067
  }
261
6068
  }
262
6069
 
@@ -267,13 +6074,69 @@ frloc_tags_art_sg_fem_vow_d_en_04a = {
267
6074
  NOT = { has_country_flag = is_china_flag }
268
6075
  NOT = { has_country_flag = is_revolutionary_china_flag }
269
6076
  NOT = { has_country_flag = is_gurkani_flag }
6077
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
270
6078
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
271
- NOT = { has_country_flag = is_hanseatic_league_flag }
6079
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6080
+ NOT = { has_country_flag = is_FBE_flag }
6081
+ NOT = { has_country_flag = is_EY0_flag }
6082
+ NOT = { has_country_flag = is_EY1_flag }
6083
+ NOT = { has_country_flag = is_EY2_flag }
6084
+ NOT = { has_country_flag = is_EY3_flag }
6085
+ NOT = { has_country_flag = is_EY4_flag }
6086
+ NOT = { has_country_flag = is_EY5_flag }
6087
+ NOT = { has_country_flag = is_EY6_flag }
6088
+ NOT = { has_country_flag = is_EY7_flag }
6089
+ NOT = { has_country_flag = is_E11_flag }
6090
+ NOT = { has_country_flag = is_E12_flag }
6091
+ NOT = { has_country_flag = is_E13_flag }
6092
+ NOT = { has_country_flag = is_E14_flag }
6093
+ NOT = { has_country_flag = is_E15_flag }
6094
+ NOT = { has_country_flag = is_E16_flag }
6095
+ NOT = { has_country_flag = is_E17_flag }
6096
+ NOT = { has_country_flag = is_TRK_flag }
6097
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6098
+ NOT = { has_country_flag = ave_empire_name }
6099
+ NOT = { has_country_flag = ave_state_name }
6100
+ NOT = { has_country_flag = is_FB1_flag }
6101
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6102
+ NOT = { has_country_flag = is_JPE_flag }
6103
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6104
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6105
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6106
+ NOT = { has_country_flag = is_RPR_flag }
6107
+ NOT = { has_country_flag = is_LPC_flag }
6108
+ NOT = { has_country_flag = is_EY8_flag }
6109
+ NOT = { has_country_flag = is_EY9_flag }
6110
+ NOT = { has_country_flag = is_E10_flag }
6111
+ NOT = { has_country_flag = ave_republic_name }
6112
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
272
6113
  NOT = { has_country_flag = is_kingdom_of_god_flag }
273
6114
  NOT = { has_country_flag = is_turkey_flag }
274
6115
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6116
+ NOT = { has_country_flag = is_burma }
6117
+ NOT = { has_country_flag = is_SIQ_flag }
6118
+ NOT = { has_country_flag = is_FB2_flag }
275
6119
  NOT = { has_country_flag = unified_islam }
6120
+ NOT = { has_country_flag = is_ramannadesa }
6121
+ NOT = { has_country_flag = is_dai_nam_flag }
6122
+ NOT = { has_country_flag = is_viet_nam_flag }
6123
+ NOT = { has_country_flag = is_nusantara_flag }
6124
+ NOT = { has_country_flag = ave_duchy_name }
6125
+ NOT = { has_country_flag = is_KRJ_flag }
6126
+ NOT = { has_country_flag = is_JPS_flag }
6127
+ NOT = { has_country_flag = is_FB3_flag }
6128
+ NOT = { has_country_flag = is_hariphunchai }
6129
+ NOT = { has_country_flag = is_dvaravati }
6130
+ NOT = { has_country_flag = is_srijivaya_flag }
6131
+ NOT = { has_country_flag = is_pue_flag }
6132
+ NOT = { has_country_flag = is_LJN_flag }
6133
+ NOT = { has_country_flag = ave_theocracy_name }
6134
+ NOT = { has_country_flag = is_iran_flag }
6135
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
276
6136
  OR = {
6137
+ has_country_flag = is_NCP_flag
6138
+ has_country_flag = change_name_NPI_flag
6139
+ has_country_flag = is_KLU_flag
277
6140
  ### USUAL PRIORITY ###
278
6141
  # Scandinavia / Scandinavie
279
6142
  tag = EST tag = ICE
@@ -315,13 +6178,69 @@ frloc_tags_art_pl_masc_cons_chezles_05a = {
315
6178
  NOT = { has_country_flag = is_china_flag }
316
6179
  NOT = { has_country_flag = is_revolutionary_china_flag }
317
6180
  NOT = { has_country_flag = is_gurkani_flag }
6181
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
318
6182
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
319
- NOT = { has_country_flag = is_hanseatic_league_flag }
6183
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6184
+ NOT = { has_country_flag = is_FBE_flag }
6185
+ NOT = { has_country_flag = is_EY0_flag }
6186
+ NOT = { has_country_flag = is_EY1_flag }
6187
+ NOT = { has_country_flag = is_EY2_flag }
6188
+ NOT = { has_country_flag = is_EY3_flag }
6189
+ NOT = { has_country_flag = is_EY4_flag }
6190
+ NOT = { has_country_flag = is_EY5_flag }
6191
+ NOT = { has_country_flag = is_EY6_flag }
6192
+ NOT = { has_country_flag = is_EY7_flag }
6193
+ NOT = { has_country_flag = is_E11_flag }
6194
+ NOT = { has_country_flag = is_E12_flag }
6195
+ NOT = { has_country_flag = is_E13_flag }
6196
+ NOT = { has_country_flag = is_E14_flag }
6197
+ NOT = { has_country_flag = is_E15_flag }
6198
+ NOT = { has_country_flag = is_E16_flag }
6199
+ NOT = { has_country_flag = is_E17_flag }
6200
+ NOT = { has_country_flag = is_TRK_flag }
6201
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6202
+ NOT = { has_country_flag = ave_empire_name }
6203
+ NOT = { has_country_flag = ave_state_name }
6204
+ NOT = { has_country_flag = is_FB1_flag }
6205
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6206
+ NOT = { has_country_flag = is_JPE_flag }
6207
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6208
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6209
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6210
+ NOT = { has_country_flag = is_RPR_flag }
6211
+ NOT = { has_country_flag = is_LPC_flag }
6212
+ NOT = { has_country_flag = is_EY8_flag }
6213
+ NOT = { has_country_flag = is_EY9_flag }
6214
+ NOT = { has_country_flag = is_E10_flag }
6215
+ NOT = { has_country_flag = ave_republic_name }
6216
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6217
+ NOT = { has_country_flag = is_NCP_flag }
6218
+ NOT = { has_country_flag = change_name_NPI_flag }
6219
+ NOT = { has_country_flag = is_KLU_flag }
320
6220
  NOT = { has_country_flag = is_kingdom_of_god_flag }
321
6221
  NOT = { has_country_flag = is_turkey_flag }
322
6222
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6223
+ NOT = { has_country_flag = is_burma }
6224
+ NOT = { has_country_flag = is_SIQ_flag }
6225
+ NOT = { has_country_flag = is_FB2_flag }
323
6226
  NOT = { has_country_flag = unified_islam }
6227
+ NOT = { has_country_flag = is_ramannadesa }
6228
+ NOT = { has_country_flag = is_dai_nam_flag }
6229
+ NOT = { has_country_flag = is_viet_nam_flag }
6230
+ NOT = { has_country_flag = is_nusantara_flag }
6231
+ NOT = { has_country_flag = ave_duchy_name }
6232
+ NOT = { has_country_flag = is_KRJ_flag }
6233
+ NOT = { has_country_flag = is_JPS_flag }
6234
+ NOT = { has_country_flag = is_FB3_flag }
6235
+ NOT = { has_country_flag = is_hariphunchai }
6236
+ NOT = { has_country_flag = is_dvaravati }
6237
+ NOT = { has_country_flag = is_srijivaya_flag }
6238
+ NOT = { has_country_flag = ave_theocracy_name }
6239
+ NOT = { has_country_flag = is_iran_flag }
6240
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
324
6241
  OR = {
6242
+ has_country_flag = is_pue_flag
6243
+ has_country_flag = is_LJN_flag
325
6244
  ### USUAL PRIORITY ###
326
6245
  # Scandinavia / Scandinavie
327
6246
  tag = SMI
@@ -343,23 +6262,24 @@ frloc_tags_art_pl_masc_cons_chezles_05a = {
343
6262
  tag = AZT tag = CHE tag = CHM tag = CRE tag = HUR tag = INC tag = IRO tag = MAY tag = SHA tag = ZAP
344
6263
  # North American Additions / Ajouts en Am閞ique du Nord
345
6264
  tag = ABE tag = APA tag = ARP tag = ASI tag = BLA tag = CAD tag = CHI tag = CHO tag = CHY tag = CNK tag = COC tag = COM tag = FOX tag = HDA tag = ILL tag = ITZ tag = KIC tag = KIO tag = LEN tag = MAH tag = MIK tag = MIX tag = MMI tag = NAH tag = OJI tag = OSA tag = OTT tag = PAW tag = PEQ tag = PIM tag = POT tag = POW tag = PUE tag = SAL tag = SHO tag = SIO tag = SUS tag = TAR tag = TLA tag = TOT tag = WCR tag = WIC tag = XIU
6265
+ # North America 1.31
6266
+ tag = ABI tag = ACO tag = AGG tag = AGQ tag = ALT tag = ANL tag = ARN tag = ATA tag = ATT tag = ATW tag = CAO tag = CAQ tag = CAY tag = CCA tag = CIA tag = CLG tag = COF tag = COO tag = COW tag = ERI tag = ETO tag = HNI tag = HWK tag = ICH tag = INN tag = ISL tag = JOA tag = KSI tag = KSK tag = KSP tag = LAK tag = MLS tag = MOH tag = MSG tag = NAK tag = NEH tag = NTC tag = NTZ tag = OEO tag = OHK tag = ONE tag = ONO tag = OSH tag = PCH tag = PEN tag = PEO tag = QUI tag = SAT tag = SEN tag = STA tag = TAH tag = TIO tag = TSC tag = WAM tag = WCY tag = WEN
346
6267
  # South American Additions / Ajouts en Am閞ique du Sud
347
6268
  tag = ARW tag = CAB tag = CCQ tag = CLA tag = CRA tag = CUA tag = CYA tag = GUA tag = HJA tag = ICM tag = MCA tag = MPC tag = PCJ tag = PTG tag = TPA tag = TPQ tag = TUA tag = WKA
348
6269
  # Golden Century Mesoamerican Tags
349
6270
  tag = CCM tag = CHT tag = GAM tag = HST tag = KAQ tag = KER tag = LAC tag = LIP tag = MAT tag = MIS tag = MSC tag = OTO tag = TAI tag = YAQ tag = YKT tag = YOK tag = ZNI
350
6271
  # Africa / Afrique
351
- tag = ASH tag = HAU tag = NUB tag = OYO
6272
+ tag = ASH tag = HAU tag = NUB tag = ZUL
352
6273
  # East African Additions / Ajouts en Afrique orientale
353
6274
  tag = BEJ tag = WLY
354
6275
  # Kongo, Great Lakes & Central Africa / Congo, Grands Lacs et Afrique centrale
355
- tag = UBH tag = TYO tag = BNY tag = CKW tag = KUB tag = LND tag = LUB tag = YAK tag = MRA tag = TBK tag = MKU
6276
+ tag = CKW tag = KUB tag = LND tag = LUB tag = MKU tag = MRA tag = TBK tag = TYO tag = YAK
356
6277
  # African Additions / Ajouts en Afrique
357
6278
  tag = FUL tag = MSI tag = NUP
358
6279
  # Madagascar
359
6280
  tag = ANT tag = BTS tag = MFY
360
6281
  # Far East / Extr阭e-Orient
361
- tag = CHG tag = KHA tag = KHM tag = MCH tag = OIR tag = SST
362
- tag = MNG tag = QNG tag = RYU tag = YUA
6282
+ tag = CHG tag = JAR tag = KHA tag = KHM tag = KOH tag = MCH tag = MNG tag = OIR tag = QNG tag = RHA tag = SST tag = YUA
363
6283
  # Indonesia Additions / Ajouts en Indon閟ie
364
6284
  tag = BNJ tag = MAS
365
6285
  # Daimyos & New Daimyos 1.20 / Daimy魋 et nouveaux daimy魋 1.20
@@ -380,6 +6300,10 @@ frloc_tags_art_pl_masc_cons_chezles_05a = {
380
6300
  tag = KLM
381
6301
  # ???
382
6302
  tag = SYN
6303
+ # Oceanic tags
6304
+ tag = AWN tag = EOR tag = GMI tag = KAU tag = KUL tag = LAI tag = LAR tag = MIA tag = MLG tag = NOO tag = PLW tag = TIW tag = WRU tag = YNU tag = YOL
6305
+ # Leviathan Maori tags
6306
+ tag = MAA tag = TAK tag = TAN tag = TEA tag = TNK tag = TTT tag = WAI
383
6307
  }
384
6308
  }
385
6309
 
@@ -390,12 +6314,68 @@ frloc_tags_art_pl_masc_cons_aux_05b = {
390
6314
  NOT = { has_country_flag = is_china_flag }
391
6315
  NOT = { has_country_flag = is_revolutionary_china_flag }
392
6316
  NOT = { has_country_flag = is_gurkani_flag }
6317
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
393
6318
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
394
- NOT = { has_country_flag = is_hanseatic_league_flag }
6319
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6320
+ NOT = { has_country_flag = is_FBE_flag }
6321
+ NOT = { has_country_flag = is_EY0_flag }
6322
+ NOT = { has_country_flag = is_EY1_flag }
6323
+ NOT = { has_country_flag = is_EY2_flag }
6324
+ NOT = { has_country_flag = is_EY3_flag }
6325
+ NOT = { has_country_flag = is_EY4_flag }
6326
+ NOT = { has_country_flag = is_EY5_flag }
6327
+ NOT = { has_country_flag = is_EY6_flag }
6328
+ NOT = { has_country_flag = is_EY7_flag }
6329
+ NOT = { has_country_flag = is_E11_flag }
6330
+ NOT = { has_country_flag = is_E12_flag }
6331
+ NOT = { has_country_flag = is_E13_flag }
6332
+ NOT = { has_country_flag = is_E14_flag }
6333
+ NOT = { has_country_flag = is_E15_flag }
6334
+ NOT = { has_country_flag = is_E16_flag }
6335
+ NOT = { has_country_flag = is_E17_flag }
6336
+ NOT = { has_country_flag = is_TRK_flag }
6337
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6338
+ NOT = { has_country_flag = ave_empire_name }
6339
+ NOT = { has_country_flag = ave_state_name }
6340
+ NOT = { has_country_flag = is_FB1_flag }
6341
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6342
+ NOT = { has_country_flag = is_JPE_flag }
6343
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6344
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6345
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6346
+ NOT = { has_country_flag = is_RPR_flag }
6347
+ NOT = { has_country_flag = is_LPC_flag }
6348
+ NOT = { has_country_flag = is_EY8_flag }
6349
+ NOT = { has_country_flag = is_EY9_flag }
6350
+ NOT = { has_country_flag = is_E10_flag }
6351
+ NOT = { has_country_flag = ave_republic_name }
6352
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6353
+ NOT = { has_country_flag = is_NCP_flag }
6354
+ NOT = { has_country_flag = change_name_NPI_flag }
6355
+ NOT = { has_country_flag = is_KLU_flag }
395
6356
  NOT = { has_country_flag = is_kingdom_of_god_flag }
396
6357
  NOT = { has_country_flag = is_turkey_flag }
397
6358
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6359
+ NOT = { has_country_flag = is_burma }
6360
+ NOT = { has_country_flag = is_SIQ_flag }
6361
+ NOT = { has_country_flag = is_FB2_flag }
398
6362
  NOT = { has_country_flag = unified_islam }
6363
+ NOT = { has_country_flag = is_ramannadesa }
6364
+ NOT = { has_country_flag = is_dai_nam_flag }
6365
+ NOT = { has_country_flag = is_viet_nam_flag }
6366
+ NOT = { has_country_flag = is_nusantara_flag }
6367
+ NOT = { has_country_flag = ave_duchy_name }
6368
+ NOT = { has_country_flag = is_KRJ_flag }
6369
+ NOT = { has_country_flag = is_JPS_flag }
6370
+ NOT = { has_country_flag = is_FB3_flag }
6371
+ NOT = { has_country_flag = is_hariphunchai }
6372
+ NOT = { has_country_flag = is_dvaravati }
6373
+ NOT = { has_country_flag = is_srijivaya_flag }
6374
+ NOT = { has_country_flag = is_pue_flag }
6375
+ NOT = { has_country_flag = is_LJN_flag }
6376
+ NOT = { has_country_flag = ave_theocracy_name }
6377
+ NOT = { has_country_flag = is_iran_flag }
6378
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
399
6379
  OR = {
400
6380
  ### USUAL PRIORITY ###
401
6381
  # Colonies
@@ -412,13 +6392,69 @@ frloc_tags_art_pl_masc_cons_dansles_05c = {
412
6392
  NOT = { has_country_flag = is_china_flag }
413
6393
  NOT = { has_country_flag = is_revolutionary_china_flag }
414
6394
  NOT = { has_country_flag = is_gurkani_flag }
6395
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
415
6396
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
416
- NOT = { has_country_flag = is_hanseatic_league_flag }
6397
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6398
+ NOT = { has_country_flag = is_FBE_flag }
6399
+ NOT = { has_country_flag = is_EY0_flag }
6400
+ NOT = { has_country_flag = is_EY1_flag }
6401
+ NOT = { has_country_flag = is_EY2_flag }
6402
+ NOT = { has_country_flag = is_EY3_flag }
6403
+ NOT = { has_country_flag = is_EY4_flag }
6404
+ NOT = { has_country_flag = is_EY5_flag }
6405
+ NOT = { has_country_flag = is_EY6_flag }
6406
+ NOT = { has_country_flag = is_EY7_flag }
6407
+ NOT = { has_country_flag = is_E11_flag }
6408
+ NOT = { has_country_flag = is_E12_flag }
6409
+ NOT = { has_country_flag = is_E13_flag }
6410
+ NOT = { has_country_flag = is_E14_flag }
6411
+ NOT = { has_country_flag = is_E15_flag }
6412
+ NOT = { has_country_flag = is_E16_flag }
6413
+ NOT = { has_country_flag = is_E17_flag }
6414
+ NOT = { has_country_flag = is_TRK_flag }
6415
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6416
+ NOT = { has_country_flag = ave_empire_name }
6417
+ NOT = { has_country_flag = ave_state_name }
6418
+ NOT = { has_country_flag = is_FB1_flag }
6419
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6420
+ NOT = { has_country_flag = is_JPE_flag }
6421
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6422
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6423
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6424
+ NOT = { has_country_flag = is_RPR_flag }
6425
+ NOT = { has_country_flag = is_LPC_flag }
6426
+ NOT = { has_country_flag = is_EY8_flag }
6427
+ NOT = { has_country_flag = is_EY9_flag }
6428
+ NOT = { has_country_flag = is_E10_flag }
6429
+ NOT = { has_country_flag = ave_republic_name }
6430
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6431
+ NOT = { has_country_flag = is_NCP_flag }
6432
+ NOT = { has_country_flag = change_name_NPI_flag }
6433
+ NOT = { has_country_flag = is_KLU_flag }
417
6434
  NOT = { has_country_flag = is_kingdom_of_god_flag }
418
6435
  NOT = { has_country_flag = is_turkey_flag }
419
6436
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6437
+ NOT = { has_country_flag = is_burma }
6438
+ NOT = { has_country_flag = is_SIQ_flag }
6439
+ NOT = { has_country_flag = is_FB2_flag }
420
6440
  NOT = { has_country_flag = unified_islam }
6441
+ NOT = { has_country_flag = is_ramannadesa }
6442
+ NOT = { has_country_flag = is_dai_nam_flag }
6443
+ NOT = { has_country_flag = is_viet_nam_flag }
6444
+ NOT = { has_country_flag = is_nusantara_flag }
6445
+ NOT = { has_country_flag = ave_duchy_name }
6446
+ NOT = { has_country_flag = is_KRJ_flag }
6447
+ NOT = { has_country_flag = is_JPS_flag }
6448
+ NOT = { has_country_flag = is_FB3_flag }
6449
+ NOT = { has_country_flag = is_hariphunchai }
6450
+ NOT = { has_country_flag = is_dvaravati }
6451
+ NOT = { has_country_flag = is_srijivaya_flag }
6452
+ NOT = { has_country_flag = is_pue_flag }
6453
+ NOT = { has_country_flag = is_LJN_flag }
6454
+ NOT = { has_country_flag = is_iran_flag }
6455
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
421
6456
  OR = {
6457
+ has_country_flag = ave_theocracy_name
422
6458
  ### USUAL PRIORITY ###
423
6459
  # Italy / Italie
424
6460
  tag = PAP
@@ -434,18 +6470,78 @@ frloc_tags_art_pl_fem_cons_aux_07a = {
434
6470
  NOT = { has_country_flag = is_china_flag }
435
6471
  NOT = { has_country_flag = is_revolutionary_china_flag }
436
6472
  NOT = { has_country_flag = is_gurkani_flag }
6473
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
437
6474
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
438
- NOT = { has_country_flag = is_hanseatic_league_flag }
6475
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6476
+ NOT = { has_country_flag = is_FBE_flag }
6477
+ NOT = { has_country_flag = is_EY0_flag }
6478
+ NOT = { has_country_flag = is_EY1_flag }
6479
+ NOT = { has_country_flag = is_EY2_flag }
6480
+ NOT = { has_country_flag = is_EY3_flag }
6481
+ NOT = { has_country_flag = is_EY4_flag }
6482
+ NOT = { has_country_flag = is_EY5_flag }
6483
+ NOT = { has_country_flag = is_EY6_flag }
6484
+ NOT = { has_country_flag = is_EY7_flag }
6485
+ NOT = { has_country_flag = is_E11_flag }
6486
+ NOT = { has_country_flag = is_E12_flag }
6487
+ NOT = { has_country_flag = is_E13_flag }
6488
+ NOT = { has_country_flag = is_E14_flag }
6489
+ NOT = { has_country_flag = is_E15_flag }
6490
+ NOT = { has_country_flag = is_E16_flag }
6491
+ NOT = { has_country_flag = is_E17_flag }
6492
+ NOT = { has_country_flag = is_TRK_flag }
6493
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6494
+ NOT = { has_country_flag = ave_empire_name }
6495
+ NOT = { has_country_flag = ave_state_name }
6496
+ NOT = { has_country_flag = is_FB1_flag }
6497
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6498
+ NOT = { has_country_flag = is_JPE_flag }
6499
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6500
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6501
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6502
+ NOT = { has_country_flag = is_RPR_flag }
6503
+ NOT = { has_country_flag = is_LPC_flag }
6504
+ NOT = { has_country_flag = is_EY8_flag }
6505
+ NOT = { has_country_flag = is_EY9_flag }
6506
+ NOT = { has_country_flag = is_E10_flag }
6507
+ NOT = { has_country_flag = ave_republic_name }
6508
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6509
+ NOT = { has_country_flag = is_NCP_flag }
6510
+ NOT = { has_country_flag = change_name_NPI_flag }
6511
+ NOT = { has_country_flag = is_KLU_flag }
439
6512
  NOT = { has_country_flag = is_kingdom_of_god_flag }
440
6513
  NOT = { has_country_flag = is_turkey_flag }
441
6514
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6515
+ NOT = { has_country_flag = is_burma }
6516
+ NOT = { has_country_flag = is_SIQ_flag }
6517
+ NOT = { has_country_flag = is_FB2_flag }
442
6518
  NOT = { has_country_flag = unified_islam }
6519
+ NOT = { has_country_flag = is_ramannadesa }
6520
+ NOT = { has_country_flag = is_dai_nam_flag }
6521
+ NOT = { has_country_flag = is_viet_nam_flag }
6522
+ NOT = { has_country_flag = is_nusantara_flag }
6523
+ NOT = { has_country_flag = ave_duchy_name }
6524
+ NOT = { has_country_flag = is_KRJ_flag }
6525
+ NOT = { has_country_flag = is_JPS_flag }
6526
+ NOT = { has_country_flag = is_FB3_flag }
6527
+ NOT = { has_country_flag = is_hariphunchai }
6528
+ NOT = { has_country_flag = is_dvaravati }
6529
+ NOT = { has_country_flag = is_srijivaya_flag }
6530
+ NOT = { has_country_flag = is_pue_flag }
6531
+ NOT = { has_country_flag = is_LJN_flag }
6532
+ NOT = { has_country_flag = ave_theocracy_name }
6533
+ NOT = { has_country_flag = is_iran_flag }
6534
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
443
6535
  OR = {
444
6536
  ### USUAL PRIORITY ###
445
6537
  # Colonies
446
6538
  tag = CAM tag = WSI
6539
+ # Far East / Extr阭e-Orient
6540
+ tag = RYU
447
6541
  # India / Inde
448
6542
  tag = DGL
6543
+ # Oceanic tags
6544
+ tag = SAM tag = TOG tag = VIT
449
6545
  }
450
6546
  }
451
6547
 
@@ -456,12 +6552,68 @@ frloc_tags_art_pl_fem_cons_dansles_07b = {
456
6552
  NOT = { has_country_flag = is_china_flag }
457
6553
  NOT = { has_country_flag = is_revolutionary_china_flag }
458
6554
  NOT = { has_country_flag = is_gurkani_flag }
6555
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
459
6556
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
460
- NOT = { has_country_flag = is_hanseatic_league_flag }
6557
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6558
+ NOT = { has_country_flag = is_FBE_flag }
6559
+ NOT = { has_country_flag = is_EY0_flag }
6560
+ NOT = { has_country_flag = is_EY1_flag }
6561
+ NOT = { has_country_flag = is_EY2_flag }
6562
+ NOT = { has_country_flag = is_EY3_flag }
6563
+ NOT = { has_country_flag = is_EY4_flag }
6564
+ NOT = { has_country_flag = is_EY5_flag }
6565
+ NOT = { has_country_flag = is_EY6_flag }
6566
+ NOT = { has_country_flag = is_EY7_flag }
6567
+ NOT = { has_country_flag = is_E11_flag }
6568
+ NOT = { has_country_flag = is_E12_flag }
6569
+ NOT = { has_country_flag = is_E13_flag }
6570
+ NOT = { has_country_flag = is_E14_flag }
6571
+ NOT = { has_country_flag = is_E15_flag }
6572
+ NOT = { has_country_flag = is_E16_flag }
6573
+ NOT = { has_country_flag = is_E17_flag }
6574
+ NOT = { has_country_flag = is_TRK_flag }
6575
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6576
+ NOT = { has_country_flag = ave_empire_name }
6577
+ NOT = { has_country_flag = ave_state_name }
6578
+ NOT = { has_country_flag = is_FB1_flag }
6579
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6580
+ NOT = { has_country_flag = is_JPE_flag }
6581
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6582
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6583
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6584
+ NOT = { has_country_flag = is_RPR_flag }
6585
+ NOT = { has_country_flag = is_LPC_flag }
6586
+ NOT = { has_country_flag = is_EY8_flag }
6587
+ NOT = { has_country_flag = is_EY9_flag }
6588
+ NOT = { has_country_flag = is_E10_flag }
6589
+ NOT = { has_country_flag = ave_republic_name }
6590
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6591
+ NOT = { has_country_flag = is_NCP_flag }
6592
+ NOT = { has_country_flag = change_name_NPI_flag }
6593
+ NOT = { has_country_flag = is_KLU_flag }
461
6594
  NOT = { has_country_flag = is_kingdom_of_god_flag }
462
6595
  NOT = { has_country_flag = is_turkey_flag }
463
6596
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6597
+ NOT = { has_country_flag = is_burma }
6598
+ NOT = { has_country_flag = is_SIQ_flag }
6599
+ NOT = { has_country_flag = is_FB2_flag }
464
6600
  NOT = { has_country_flag = unified_islam }
6601
+ NOT = { has_country_flag = is_ramannadesa }
6602
+ NOT = { has_country_flag = is_dai_nam_flag }
6603
+ NOT = { has_country_flag = is_viet_nam_flag }
6604
+ NOT = { has_country_flag = is_nusantara_flag }
6605
+ NOT = { has_country_flag = ave_duchy_name }
6606
+ NOT = { has_country_flag = is_KRJ_flag }
6607
+ NOT = { has_country_flag = is_JPS_flag }
6608
+ NOT = { has_country_flag = is_FB3_flag }
6609
+ NOT = { has_country_flag = is_hariphunchai }
6610
+ NOT = { has_country_flag = is_dvaravati }
6611
+ NOT = { has_country_flag = is_srijivaya_flag }
6612
+ NOT = { has_country_flag = is_pue_flag }
6613
+ NOT = { has_country_flag = is_LJN_flag }
6614
+ NOT = { has_country_flag = ave_theocracy_name }
6615
+ NOT = { has_country_flag = is_iran_flag }
6616
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
465
6617
  OR = {
466
6618
  ### USUAL PRIORITY ###
467
6619
  # British Isles / 頻es Britanniques
@@ -480,18 +6632,74 @@ frloc_tags_art_pl_fem_cons_dansles_07b = {
480
6632
  #frloc_tags_art_pl_fem_vow_X_08a = {} # CURRENTLY UNUSED
481
6633
 
482
6634
  frloc_tags_noart_sg_masc_cons_en_a_09a = {
483
- # Ex.: [鴀 Novgorod / l'honneur DE Novgorod / le tr鬾e DE Novgorod / arriver EN Novgorod / demander ?Novgorod / NOUVEAU-Novgorod
6635
+ # Ex.: (? Novgorod / l'honneur DE Novgorod / le tr鬾e DE Novgorod / arriver EN Novgorod / demander ?Novgorod / NOUVEAU-Novgorod
484
6636
  ### HIGHER PRIORITY ###
485
6637
  # override_country_name
486
6638
  NOT = { has_country_flag = is_china_flag }
487
6639
  NOT = { has_country_flag = is_revolutionary_china_flag }
488
6640
  NOT = { has_country_flag = is_gurkani_flag }
6641
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
489
6642
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
490
- NOT = { has_country_flag = is_hanseatic_league_flag }
6643
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6644
+ NOT = { has_country_flag = is_FBE_flag }
6645
+ NOT = { has_country_flag = is_EY0_flag }
6646
+ NOT = { has_country_flag = is_EY1_flag }
6647
+ NOT = { has_country_flag = is_EY2_flag }
6648
+ NOT = { has_country_flag = is_EY3_flag }
6649
+ NOT = { has_country_flag = is_EY4_flag }
6650
+ NOT = { has_country_flag = is_EY5_flag }
6651
+ NOT = { has_country_flag = is_EY6_flag }
6652
+ NOT = { has_country_flag = is_EY7_flag }
6653
+ NOT = { has_country_flag = is_E11_flag }
6654
+ NOT = { has_country_flag = is_E12_flag }
6655
+ NOT = { has_country_flag = is_E13_flag }
6656
+ NOT = { has_country_flag = is_E14_flag }
6657
+ NOT = { has_country_flag = is_E15_flag }
6658
+ NOT = { has_country_flag = is_E16_flag }
6659
+ NOT = { has_country_flag = is_E17_flag }
6660
+ NOT = { has_country_flag = is_TRK_flag }
6661
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6662
+ NOT = { has_country_flag = ave_empire_name }
6663
+ NOT = { has_country_flag = ave_state_name }
6664
+ NOT = { has_country_flag = is_FB1_flag }
6665
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6666
+ NOT = { has_country_flag = is_JPE_flag }
6667
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6668
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6669
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6670
+ NOT = { has_country_flag = is_RPR_flag }
6671
+ NOT = { has_country_flag = is_LPC_flag }
6672
+ NOT = { has_country_flag = is_EY8_flag }
6673
+ NOT = { has_country_flag = is_EY9_flag }
6674
+ NOT = { has_country_flag = is_E10_flag }
6675
+ NOT = { has_country_flag = ave_republic_name }
6676
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6677
+ NOT = { has_country_flag = is_NCP_flag }
6678
+ NOT = { has_country_flag = change_name_NPI_flag }
6679
+ NOT = { has_country_flag = is_KLU_flag }
491
6680
  NOT = { has_country_flag = is_kingdom_of_god_flag }
492
6681
  NOT = { has_country_flag = is_turkey_flag }
493
6682
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6683
+ NOT = { has_country_flag = is_burma }
6684
+ NOT = { has_country_flag = is_SIQ_flag }
6685
+ NOT = { has_country_flag = is_FB2_flag }
494
6686
  NOT = { has_country_flag = unified_islam }
6687
+ NOT = { has_country_flag = is_ramannadesa }
6688
+ NOT = { has_country_flag = is_dai_nam_flag }
6689
+ NOT = { has_country_flag = is_viet_nam_flag }
6690
+ NOT = { has_country_flag = is_nusantara_flag }
6691
+ NOT = { has_country_flag = ave_duchy_name }
6692
+ NOT = { has_country_flag = is_KRJ_flag }
6693
+ NOT = { has_country_flag = is_JPS_flag }
6694
+ NOT = { has_country_flag = is_FB3_flag }
6695
+ NOT = { has_country_flag = is_hariphunchai }
6696
+ NOT = { has_country_flag = is_dvaravati }
6697
+ NOT = { has_country_flag = is_srijivaya_flag }
6698
+ NOT = { has_country_flag = is_pue_flag }
6699
+ NOT = { has_country_flag = is_LJN_flag }
6700
+ NOT = { has_country_flag = ave_theocracy_name }
6701
+ NOT = { has_country_flag = is_iran_flag }
6702
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
495
6703
  OR = {
496
6704
  ### USUAL PRIORITY ###
497
6705
  # Russia / Russie
@@ -506,22 +6714,84 @@ frloc_tags_noart_sg_masc_cons_en_a_09a = {
506
6714
  tag = BAR tag = NZH
507
6715
  # Asia Minor / Asie mineure
508
6716
  tag = BHT tag = RUM
6717
+ # Far East / Extr阭e-Orient
6718
+ tag = BEI
6719
+ # Indochina Additions / Ajouts en Indochine
6720
+ tag = MPH
6721
+ # Indonesia Additions / Ajouts en Indon閟ie
6722
+ tag = KUT
509
6723
  }
510
6724
  }
511
6725
 
512
6726
  frloc_tags_noart_sg_masc_cons_a_a_09b = {
513
- # Ex.: [鴀 Chypre / l'honneur DE Chypre / le tr鬾e DE Chypre / arriver ?Chypre / demander ?Chypre / NOUVEAU-Chypre
6727
+ # Ex.: (? Chypre / l'honneur DE Chypre / le tr鬾e DE Chypre / arriver ?Chypre / demander ?Chypre / NOUVEAU-Chypre
514
6728
  ### HIGHER PRIORITY ###
515
6729
  # override_country_name
516
6730
  NOT = { has_country_flag = is_china_flag }
517
6731
  NOT = { has_country_flag = is_revolutionary_china_flag }
518
6732
  NOT = { has_country_flag = is_gurkani_flag }
6733
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
519
6734
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
520
- NOT = { has_country_flag = is_hanseatic_league_flag }
6735
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6736
+ NOT = { has_country_flag = is_FBE_flag }
6737
+ NOT = { has_country_flag = is_EY0_flag }
6738
+ NOT = { has_country_flag = is_EY1_flag }
6739
+ NOT = { has_country_flag = is_EY2_flag }
6740
+ NOT = { has_country_flag = is_EY3_flag }
6741
+ NOT = { has_country_flag = is_EY4_flag }
6742
+ NOT = { has_country_flag = is_EY5_flag }
6743
+ NOT = { has_country_flag = is_EY6_flag }
6744
+ NOT = { has_country_flag = is_EY7_flag }
6745
+ NOT = { has_country_flag = is_E11_flag }
6746
+ NOT = { has_country_flag = is_E12_flag }
6747
+ NOT = { has_country_flag = is_E13_flag }
6748
+ NOT = { has_country_flag = is_E14_flag }
6749
+ NOT = { has_country_flag = is_E15_flag }
6750
+ NOT = { has_country_flag = is_E16_flag }
6751
+ NOT = { has_country_flag = is_E17_flag }
6752
+ NOT = { has_country_flag = is_TRK_flag }
6753
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6754
+ NOT = { has_country_flag = ave_empire_name }
6755
+ NOT = { has_country_flag = ave_state_name }
6756
+ NOT = { has_country_flag = is_FB1_flag }
6757
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6758
+ NOT = { has_country_flag = is_JPE_flag }
6759
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6760
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6761
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6762
+ NOT = { has_country_flag = is_RPR_flag }
6763
+ NOT = { has_country_flag = is_LPC_flag }
6764
+ NOT = { has_country_flag = is_EY8_flag }
6765
+ NOT = { has_country_flag = is_EY9_flag }
6766
+ NOT = { has_country_flag = is_E10_flag }
6767
+ NOT = { has_country_flag = ave_republic_name }
6768
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6769
+ NOT = { has_country_flag = is_NCP_flag }
6770
+ NOT = { has_country_flag = change_name_NPI_flag }
6771
+ NOT = { has_country_flag = is_KLU_flag }
521
6772
  NOT = { has_country_flag = is_kingdom_of_god_flag }
522
6773
  NOT = { has_country_flag = is_turkey_flag }
523
6774
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6775
+ NOT = { has_country_flag = is_burma }
6776
+ NOT = { has_country_flag = is_SIQ_flag }
6777
+ NOT = { has_country_flag = is_FB2_flag }
524
6778
  NOT = { has_country_flag = unified_islam }
6779
+ NOT = { has_country_flag = is_ramannadesa }
6780
+ NOT = { has_country_flag = is_dai_nam_flag }
6781
+ NOT = { has_country_flag = is_viet_nam_flag }
6782
+ NOT = { has_country_flag = is_nusantara_flag }
6783
+ NOT = { has_country_flag = ave_duchy_name }
6784
+ NOT = { has_country_flag = is_KRJ_flag }
6785
+ NOT = { has_country_flag = is_JPS_flag }
6786
+ NOT = { has_country_flag = is_FB3_flag }
6787
+ NOT = { has_country_flag = is_hariphunchai }
6788
+ NOT = { has_country_flag = is_dvaravati }
6789
+ NOT = { has_country_flag = is_srijivaya_flag }
6790
+ NOT = { has_country_flag = is_pue_flag }
6791
+ NOT = { has_country_flag = is_LJN_flag }
6792
+ NOT = { has_country_flag = ave_theocracy_name }
6793
+ NOT = { has_country_flag = is_iran_flag }
6794
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
525
6795
  OR = {
526
6796
  ### USUAL PRIORITY ###
527
6797
  # Balkans
@@ -531,40 +6801,77 @@ frloc_tags_noart_sg_masc_cons_a_a_09b = {
531
6801
  }
532
6802
  }
533
6803
 
534
- # TODO : might be better if all were plural?
535
- frloc_tags_noart_sg_masc_cons_en_aux_09c = {
536
- # Ex.: [鴀 Ming / l'honneur DE Ming / le tr鬾e DE Ming / arriver EN Ming / demander AUX Ming / NOUVEAU-Ming
537
- ### HIGHER PRIORITY ###
538
- # override_country_name
539
- NOT = { has_country_flag = is_china_flag }
540
- NOT = { has_country_flag = is_revolutionary_china_flag }
541
- NOT = { has_country_flag = is_gurkani_flag }
542
- NOT = { has_country_flag = is_revolutionary_gurkani_flag }
543
- NOT = { has_country_flag = is_hanseatic_league_flag }
544
- NOT = { has_country_flag = is_kingdom_of_god_flag }
545
- NOT = { has_country_flag = is_turkey_flag }
546
- NOT = { has_country_flag = is_revolutionary_turkey_flag }
547
- NOT = { has_country_flag = unified_islam }
548
- OR = {
549
- ### USUAL PRIORITY ###
550
- # Far East / Extr阭e-Orient
551
- tag = RYU
552
- }
553
- }
6804
+ #frloc_tags_noart_sg_masc_cons_en_aux_09c = {} # CURRENTLY UNUSED
554
6805
 
555
6806
  frloc_tags_noart_sg_masc_vow_en_a_10a = {
556
- # Ex.: [鴀 Alen鏾n / l'honneur D'Alen鏾n / le tr鬾e D'Alen鏾n / arriver EN Alen鏾n / demander ?Alen鏾n / NOUVEL-Alen鏾n
6807
+ # Ex.: (? Alen鏾n / l'honneur D'Alen鏾n / le tr鬾e D'Alen鏾n / arriver EN Alen鏾n / demander ?Alen鏾n / NOUVEL-Alen鏾n
557
6808
  ### HIGHER PRIORITY ###
558
6809
  # override_country_name
559
6810
  NOT = { has_country_flag = is_china_flag }
560
6811
  NOT = { has_country_flag = is_revolutionary_china_flag }
561
6812
  NOT = { has_country_flag = is_gurkani_flag }
6813
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
562
6814
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
563
- NOT = { has_country_flag = is_hanseatic_league_flag }
6815
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6816
+ NOT = { has_country_flag = is_FBE_flag }
6817
+ NOT = { has_country_flag = is_EY0_flag }
6818
+ NOT = { has_country_flag = is_EY1_flag }
6819
+ NOT = { has_country_flag = is_EY2_flag }
6820
+ NOT = { has_country_flag = is_EY3_flag }
6821
+ NOT = { has_country_flag = is_EY4_flag }
6822
+ NOT = { has_country_flag = is_EY5_flag }
6823
+ NOT = { has_country_flag = is_EY6_flag }
6824
+ NOT = { has_country_flag = is_EY7_flag }
6825
+ NOT = { has_country_flag = is_E11_flag }
6826
+ NOT = { has_country_flag = is_E12_flag }
6827
+ NOT = { has_country_flag = is_E13_flag }
6828
+ NOT = { has_country_flag = is_E14_flag }
6829
+ NOT = { has_country_flag = is_E15_flag }
6830
+ NOT = { has_country_flag = is_E16_flag }
6831
+ NOT = { has_country_flag = is_E17_flag }
6832
+ NOT = { has_country_flag = is_TRK_flag }
6833
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6834
+ NOT = { has_country_flag = ave_empire_name }
6835
+ NOT = { has_country_flag = ave_state_name }
6836
+ NOT = { has_country_flag = is_FB1_flag }
6837
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6838
+ NOT = { has_country_flag = is_JPE_flag }
6839
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6840
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6841
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6842
+ NOT = { has_country_flag = is_RPR_flag }
6843
+ NOT = { has_country_flag = is_LPC_flag }
6844
+ NOT = { has_country_flag = is_EY8_flag }
6845
+ NOT = { has_country_flag = is_EY9_flag }
6846
+ NOT = { has_country_flag = is_E10_flag }
6847
+ NOT = { has_country_flag = ave_republic_name }
6848
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6849
+ NOT = { has_country_flag = is_NCP_flag }
6850
+ NOT = { has_country_flag = change_name_NPI_flag }
6851
+ NOT = { has_country_flag = is_KLU_flag }
564
6852
  NOT = { has_country_flag = is_kingdom_of_god_flag }
565
6853
  NOT = { has_country_flag = is_turkey_flag }
566
6854
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6855
+ NOT = { has_country_flag = is_burma }
6856
+ NOT = { has_country_flag = is_SIQ_flag }
6857
+ NOT = { has_country_flag = is_FB2_flag }
567
6858
  NOT = { has_country_flag = unified_islam }
6859
+ NOT = { has_country_flag = is_ramannadesa }
6860
+ NOT = { has_country_flag = is_dai_nam_flag }
6861
+ NOT = { has_country_flag = is_viet_nam_flag }
6862
+ NOT = { has_country_flag = is_nusantara_flag }
6863
+ NOT = { has_country_flag = ave_duchy_name }
6864
+ NOT = { has_country_flag = is_KRJ_flag }
6865
+ NOT = { has_country_flag = is_JPS_flag }
6866
+ NOT = { has_country_flag = is_FB3_flag }
6867
+ NOT = { has_country_flag = is_hariphunchai }
6868
+ NOT = { has_country_flag = is_dvaravati }
6869
+ NOT = { has_country_flag = is_srijivaya_flag }
6870
+ NOT = { has_country_flag = is_pue_flag }
6871
+ NOT = { has_country_flag = is_LJN_flag }
6872
+ NOT = { has_country_flag = ave_theocracy_name }
6873
+ NOT = { has_country_flag = is_iran_flag }
6874
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
568
6875
  OR = {
569
6876
  ### USUAL PRIORITY ###
570
6877
  # France
@@ -573,22 +6880,82 @@ frloc_tags_noart_sg_masc_vow_en_a_10a = {
573
6880
  tag = OMA
574
6881
  # Persia / Perse
575
6882
  tag = ORM
6883
+ # Africa / Afrique
6884
+ tag = OYO
6885
+ # Formables
6886
+ tag = ISR
576
6887
  }
577
6888
  }
578
6889
 
579
6890
  frloc_tags_noart_sg_masc_vow_a_a_10b = {
580
- # Ex.: [鴀 Ha飔i / l'honneur D'Ha飔i / le tr鬾e D'Ha飔i / arriver ?Ha飔i / demander ?Ha飔i / NOUVEL-Ha飔i
6891
+ # Ex.: (? Ha飔i / l'honneur D'Ha飔i / le tr鬾e D'Ha飔i / arriver ?Ha飔i / demander ?Ha飔i / NOUVEL-Ha飔i
581
6892
  ### HIGHER PRIORITY ###
582
6893
  # override_country_name
583
6894
  NOT = { has_country_flag = is_china_flag }
584
6895
  NOT = { has_country_flag = is_revolutionary_china_flag }
585
6896
  NOT = { has_country_flag = is_gurkani_flag }
6897
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
586
6898
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
587
- NOT = { has_country_flag = is_hanseatic_league_flag }
6899
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6900
+ NOT = { has_country_flag = is_FBE_flag }
6901
+ NOT = { has_country_flag = is_EY0_flag }
6902
+ NOT = { has_country_flag = is_EY1_flag }
6903
+ NOT = { has_country_flag = is_EY2_flag }
6904
+ NOT = { has_country_flag = is_EY3_flag }
6905
+ NOT = { has_country_flag = is_EY4_flag }
6906
+ NOT = { has_country_flag = is_EY5_flag }
6907
+ NOT = { has_country_flag = is_EY6_flag }
6908
+ NOT = { has_country_flag = is_EY7_flag }
6909
+ NOT = { has_country_flag = is_E11_flag }
6910
+ NOT = { has_country_flag = is_E12_flag }
6911
+ NOT = { has_country_flag = is_E13_flag }
6912
+ NOT = { has_country_flag = is_E14_flag }
6913
+ NOT = { has_country_flag = is_E15_flag }
6914
+ NOT = { has_country_flag = is_E16_flag }
6915
+ NOT = { has_country_flag = is_E17_flag }
6916
+ NOT = { has_country_flag = is_TRK_flag }
6917
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6918
+ NOT = { has_country_flag = ave_empire_name }
6919
+ NOT = { has_country_flag = ave_state_name }
6920
+ NOT = { has_country_flag = is_FB1_flag }
6921
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6922
+ NOT = { has_country_flag = is_JPE_flag }
6923
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
6924
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
6925
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
6926
+ NOT = { has_country_flag = is_RPR_flag }
6927
+ NOT = { has_country_flag = is_LPC_flag }
6928
+ NOT = { has_country_flag = is_EY8_flag }
6929
+ NOT = { has_country_flag = is_EY9_flag }
6930
+ NOT = { has_country_flag = is_E10_flag }
6931
+ NOT = { has_country_flag = ave_republic_name }
6932
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
6933
+ NOT = { has_country_flag = is_NCP_flag }
6934
+ NOT = { has_country_flag = change_name_NPI_flag }
6935
+ NOT = { has_country_flag = is_KLU_flag }
588
6936
  NOT = { has_country_flag = is_kingdom_of_god_flag }
589
6937
  NOT = { has_country_flag = is_turkey_flag }
590
6938
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
6939
+ NOT = { has_country_flag = is_burma }
6940
+ NOT = { has_country_flag = is_SIQ_flag }
6941
+ NOT = { has_country_flag = is_FB2_flag }
591
6942
  NOT = { has_country_flag = unified_islam }
6943
+ NOT = { has_country_flag = is_ramannadesa }
6944
+ NOT = { has_country_flag = is_dai_nam_flag }
6945
+ NOT = { has_country_flag = is_viet_nam_flag }
6946
+ NOT = { has_country_flag = is_nusantara_flag }
6947
+ NOT = { has_country_flag = ave_duchy_name }
6948
+ NOT = { has_country_flag = is_KRJ_flag }
6949
+ NOT = { has_country_flag = is_JPS_flag }
6950
+ NOT = { has_country_flag = is_FB3_flag }
6951
+ NOT = { has_country_flag = is_hariphunchai }
6952
+ NOT = { has_country_flag = is_dvaravati }
6953
+ NOT = { has_country_flag = is_srijivaya_flag }
6954
+ NOT = { has_country_flag = is_pue_flag }
6955
+ NOT = { has_country_flag = is_LJN_flag }
6956
+ NOT = { has_country_flag = ave_theocracy_name }
6957
+ NOT = { has_country_flag = is_iran_flag }
6958
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
592
6959
  OR = {
593
6960
  ### USUAL PRIORITY ###
594
6961
  # Colonies
@@ -597,19 +6964,74 @@ frloc_tags_noart_sg_masc_vow_a_a_10b = {
597
6964
  }
598
6965
 
599
6966
  frloc_tags_noart_sg_fem_cons_de_en_11a = {
600
- # Ex.: [鴀 Tchernigov / l'honneur DE Tchernigov / le tr鬾e DE Tchernigov / arriver EN Tchernigov / demander ?Tchernigov / NOUVELLE-Tchernigov
6967
+ # Ex.: (? Tchernigov / l'honneur DE Tchernigov / le tr鬾e DE Tchernigov / arriver EN Tchernigov / demander ?Tchernigov / NOUVELLE-Tchernigov
601
6968
  ### HIGHER PRIORITY ###
602
6969
  # override_country_name
603
6970
  NOT = { has_country_flag = is_china_flag }
604
6971
  NOT = { has_country_flag = is_revolutionary_china_flag }
605
6972
  NOT = { has_country_flag = is_gurkani_flag }
6973
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
606
6974
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
607
- NOT = { has_country_flag = is_hanseatic_league_flag }
6975
+ NOT = { has_country_flag = is_majapahit_empire_flag }
6976
+ NOT = { has_country_flag = is_FBE_flag }
6977
+ NOT = { has_country_flag = is_EY0_flag }
6978
+ NOT = { has_country_flag = is_EY1_flag }
6979
+ NOT = { has_country_flag = is_EY2_flag }
6980
+ NOT = { has_country_flag = is_EY3_flag }
6981
+ NOT = { has_country_flag = is_EY4_flag }
6982
+ NOT = { has_country_flag = is_EY5_flag }
6983
+ NOT = { has_country_flag = is_EY6_flag }
6984
+ NOT = { has_country_flag = is_EY7_flag }
6985
+ NOT = { has_country_flag = is_E11_flag }
6986
+ NOT = { has_country_flag = is_E12_flag }
6987
+ NOT = { has_country_flag = is_E13_flag }
6988
+ NOT = { has_country_flag = is_E14_flag }
6989
+ NOT = { has_country_flag = is_E15_flag }
6990
+ NOT = { has_country_flag = is_E16_flag }
6991
+ NOT = { has_country_flag = is_E17_flag }
6992
+ NOT = { has_country_flag = is_TRK_flag }
6993
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
6994
+ NOT = { has_country_flag = ave_empire_name }
6995
+ NOT = { has_country_flag = ave_state_name }
6996
+ NOT = { has_country_flag = is_FB1_flag }
6997
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
6998
+ NOT = { has_country_flag = is_JPE_flag }
6999
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
7000
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
7001
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
7002
+ NOT = { has_country_flag = is_RPR_flag }
7003
+ NOT = { has_country_flag = is_LPC_flag }
7004
+ NOT = { has_country_flag = is_EY8_flag }
7005
+ NOT = { has_country_flag = is_EY9_flag }
7006
+ NOT = { has_country_flag = is_E10_flag }
7007
+ NOT = { has_country_flag = ave_republic_name }
7008
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
7009
+ NOT = { has_country_flag = is_NCP_flag }
7010
+ NOT = { has_country_flag = change_name_NPI_flag }
7011
+ NOT = { has_country_flag = is_KLU_flag }
608
7012
  NOT = { has_country_flag = is_kingdom_of_god_flag }
609
7013
  NOT = { has_country_flag = is_turkey_flag }
610
7014
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
7015
+ NOT = { has_country_flag = is_burma }
7016
+ NOT = { has_country_flag = is_SIQ_flag }
7017
+ NOT = { has_country_flag = is_FB2_flag }
611
7018
  NOT = { has_country_flag = unified_islam }
7019
+ NOT = { has_country_flag = is_ramannadesa }
7020
+ NOT = { has_country_flag = is_dai_nam_flag }
7021
+ NOT = { has_country_flag = is_viet_nam_flag }
7022
+ NOT = { has_country_flag = is_nusantara_flag }
7023
+ NOT = { has_country_flag = ave_duchy_name }
7024
+ NOT = { has_country_flag = is_KRJ_flag }
7025
+ NOT = { has_country_flag = is_JPS_flag }
7026
+ NOT = { has_country_flag = is_FB3_flag }
7027
+ NOT = { has_country_flag = is_hariphunchai }
7028
+ NOT = { has_country_flag = is_pue_flag }
7029
+ NOT = { has_country_flag = is_LJN_flag }
7030
+ NOT = { has_country_flag = is_iran_flag }
7031
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
612
7032
  OR = {
7033
+ has_country_flag = is_dvaravati
7034
+ has_country_flag = is_srijivaya_flag
613
7035
  ### USUAL PRIORITY ###
614
7036
  # Eastern Europe / Europe orientale
615
7037
  tag = CHR tag = DNZ tag = KIE tag = KRA tag = RIG
@@ -636,15 +7058,15 @@ frloc_tags_noart_sg_fem_cons_de_en_11a = {
636
7058
  # Golden Century Mesoamerican Tags
637
7059
  tag = CNP tag = COI tag = CTM tag = TEO tag = TON tag = XAL
638
7060
  # Africa / Afrique
639
- tag = MBA tag = MDI tag = MLI tag = SFA tag = SOF tag = ZAN
7061
+ tag = MBA tag = MDI tag = MLI tag = SFA tag = SOF tag = TEN tag = WGD tag = ZAN
640
7062
  # East African Additions / Ajouts en Afrique orientale
641
7063
  tag = ABB tag = DAM tag = HAR tag = HOB tag = JIM tag = PTE
642
7064
  # Kongo, Great Lakes & Central Africa / Congo, Grands Lacs et Afrique centrale
643
- tag = KIK tag = SYO tag = LDU
7065
+ tag = KIK tag = LDU tag = SYO
644
7066
  # African Additions / Ajouts en Afrique
645
7067
  tag = JNN tag = KAN tag = KNG tag = KTS tag = TMB tag = YAO tag = ZZZ
646
7068
  # Far East / Extr阭e-Orient
647
- tag = BAN tag = BLI tag = CHK tag = CSH tag = CXI tag = CZH tag = FRM tag = LUA tag = MAJ tag = MKS tag = MLC tag = MTR tag = PAT tag = PEG tag = SUK tag = SUL tag = TAU tag = VIE
7069
+ tag = BAN tag = BEU tag = BLI tag = BNE tag = BRS tag = CHK tag = CSH tag = CXI tag = CZH tag = DLI tag = FRM tag = JMB tag = LUA tag = MAJ tag = MKS tag = MLC tag = MTR tag = PAH tag = PAT tag = PEG tag = SMB tag = SUK tag = SUL tag = TAU tag = VIE
648
7070
  # Indochina Additions / Ajouts en Indochine
649
7071
  tag = HSE tag = JOH tag = MYA
650
7072
  # Burma additions / Ajouts en Birmanie
@@ -659,18 +7081,74 @@ frloc_tags_noart_sg_fem_cons_de_en_11a = {
659
7081
  }
660
7082
 
661
7083
  frloc_tags_noart_sg_fem_cons_de_a_11b = {
662
- # Ex.: [鴀 Gotland / l'honneur DE Gotland / le tr鬾e DE Gotland / arriver ?Gotland / demander ?Gotland / NOUVELLE-Gotland
7084
+ # Ex.: (? Venise / l'honneur DE Venise / le tr鬾e DE Venise / arriver ?Venise / demander ?Venise / NOUVELLE-Venise
663
7085
  ### HIGHER PRIORITY ###
664
7086
  # override_country_name
665
7087
  NOT = { has_country_flag = is_china_flag }
666
7088
  NOT = { has_country_flag = is_revolutionary_china_flag }
667
7089
  NOT = { has_country_flag = is_gurkani_flag }
7090
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
668
7091
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
669
- NOT = { has_country_flag = is_hanseatic_league_flag }
7092
+ NOT = { has_country_flag = is_majapahit_empire_flag }
7093
+ NOT = { has_country_flag = is_FBE_flag }
7094
+ NOT = { has_country_flag = is_EY0_flag }
7095
+ NOT = { has_country_flag = is_EY1_flag }
7096
+ NOT = { has_country_flag = is_EY2_flag }
7097
+ NOT = { has_country_flag = is_EY3_flag }
7098
+ NOT = { has_country_flag = is_EY4_flag }
7099
+ NOT = { has_country_flag = is_EY5_flag }
7100
+ NOT = { has_country_flag = is_EY6_flag }
7101
+ NOT = { has_country_flag = is_EY7_flag }
7102
+ NOT = { has_country_flag = is_E11_flag }
7103
+ NOT = { has_country_flag = is_E12_flag }
7104
+ NOT = { has_country_flag = is_E13_flag }
7105
+ NOT = { has_country_flag = is_E14_flag }
7106
+ NOT = { has_country_flag = is_E15_flag }
7107
+ NOT = { has_country_flag = is_E16_flag }
7108
+ NOT = { has_country_flag = is_E17_flag }
7109
+ NOT = { has_country_flag = is_TRK_flag }
7110
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
7111
+ NOT = { has_country_flag = ave_empire_name }
7112
+ NOT = { has_country_flag = ave_state_name }
7113
+ NOT = { has_country_flag = is_FB1_flag }
7114
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
7115
+ NOT = { has_country_flag = is_JPE_flag }
7116
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
7117
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
7118
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
7119
+ NOT = { has_country_flag = is_RPR_flag }
7120
+ NOT = { has_country_flag = is_LPC_flag }
7121
+ NOT = { has_country_flag = is_EY8_flag }
7122
+ NOT = { has_country_flag = is_EY9_flag }
7123
+ NOT = { has_country_flag = is_E10_flag }
7124
+ NOT = { has_country_flag = ave_republic_name }
7125
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
7126
+ NOT = { has_country_flag = is_NCP_flag }
7127
+ NOT = { has_country_flag = change_name_NPI_flag }
7128
+ NOT = { has_country_flag = is_KLU_flag }
670
7129
  NOT = { has_country_flag = is_kingdom_of_god_flag }
671
7130
  NOT = { has_country_flag = is_turkey_flag }
672
7131
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
7132
+ NOT = { has_country_flag = is_burma }
7133
+ NOT = { has_country_flag = is_SIQ_flag }
7134
+ NOT = { has_country_flag = is_FB2_flag }
673
7135
  NOT = { has_country_flag = unified_islam }
7136
+ NOT = { has_country_flag = is_ramannadesa }
7137
+ NOT = { has_country_flag = is_dai_nam_flag }
7138
+ NOT = { has_country_flag = is_viet_nam_flag }
7139
+ NOT = { has_country_flag = is_nusantara_flag }
7140
+ NOT = { has_country_flag = ave_duchy_name }
7141
+ NOT = { has_country_flag = is_KRJ_flag }
7142
+ NOT = { has_country_flag = is_JPS_flag }
7143
+ NOT = { has_country_flag = is_FB3_flag }
7144
+ NOT = { has_country_flag = is_hariphunchai }
7145
+ NOT = { has_country_flag = is_dvaravati }
7146
+ NOT = { has_country_flag = is_srijivaya_flag }
7147
+ NOT = { has_country_flag = is_pue_flag }
7148
+ NOT = { has_country_flag = is_LJN_flag }
7149
+ NOT = { has_country_flag = ave_theocracy_name }
7150
+ NOT = { has_country_flag = is_iran_flag }
7151
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
674
7152
  OR = {
675
7153
  ### USUAL PRIORITY ###
676
7154
  # Scandinavia / Scandinavie
@@ -686,26 +7164,93 @@ frloc_tags_noart_sg_fem_cons_de_a_11b = {
686
7164
  # Italy / Italie
687
7165
  tag = BLG tag = FER tag = GEN tag = JAI tag = LAN tag = LUC tag = MAN tag = MLO tag = MOD tag = NAP tag = PAR tag = PDV tag = PGA tag = PIS tag = SIE tag = SPL tag = SZO tag = VEN tag = VRN
688
7166
  # Indonesia Additions / Ajouts en Indon閟ie
689
- tag = BLM tag = BTN tag = CRB tag = DMK tag = KUT tag = LFA tag = LNO tag = LUW tag = MGD tag = PGR tag = PLB tag = PSA tag = SAK tag = SUN tag = TER tag = TID tag = PGS tag = TDO tag = MNA tag = CEB tag = BTU
7167
+ tag = BLM tag = BTN tag = CRB tag = DMK tag = LFA tag = LNO tag = LUW tag = MGD tag = PGR tag = PLB tag = PSA tag = SAK tag = SUN tag = TER tag = TID tag = PGS tag = TDO tag = MNA tag = CEB tag = BTU
690
7168
  # Pirate tags
691
7169
  tag = LIB tag = PRY
7170
+ # Oceanic tags
7171
+ tag = KAA tag = MAU tag = VIL tag = VNL
7172
+ # Dynamic Tags - Trading Cities
7173
+ tag = T00 tag = T01 tag = T02 tag = T03 tag = T04 tag = T05 tag = T06 tag = T07 tag = T08 tag = T09
7174
+ tag = T10 tag = T11 tag = T12 tag = T13 tag = T14 tag = T15 tag = T16 tag = T17 tag = T18 tag = T19
7175
+ tag = T20 tag = T21 tag = T22 tag = T23 tag = T24 tag = T25 tag = T26 tag = T27 tag = T28 tag = T29
7176
+ tag = T30 tag = T31 tag = T32 tag = T33 tag = T34 tag = T35 tag = T36 tag = T37 tag = T38 tag = T39
7177
+ tag = T40 tag = T41 tag = T42 tag = T43 tag = T44 tag = T45 tag = T46 tag = T47 tag = T48 tag = T49
7178
+ tag = T50 tag = T51 tag = T52 tag = T53 tag = T54 tag = T55 tag = T56 tag = T57 tag = T58 tag = T59
7179
+ tag = T60 tag = T61 tag = T62 tag = T63 tag = T64 tag = T65 tag = T66 tag = T67 tag = T68 tag = T69
7180
+ tag = T70 tag = T71 tag = T72 tag = T73 tag = T74
692
7181
  }
693
7182
  }
694
7183
 
695
7184
  # Special case because of the "La" that can't be erased
696
7185
  frloc_tags_noart_sg_fem_cons_dela_en_11c = {
697
- # Ex.: [鴀 La Plata / l'honneur DE La Plata / le tr鬾e DE La Plata / arriver ?La Plata / demander ?La Plata / NOUVELLE-La Plata
7186
+ # Ex.: (? La Plata / l'honneur DE La Plata / le tr鬾e DE La Plata / arriver ?La Plata / demander ?La Plata / NOUVELLE-La Plata
698
7187
  ### HIGHER PRIORITY ###
699
7188
  # override_country_name
700
7189
  NOT = { has_country_flag = is_china_flag }
701
7190
  NOT = { has_country_flag = is_revolutionary_china_flag }
702
7191
  NOT = { has_country_flag = is_gurkani_flag }
7192
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
703
7193
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
704
- NOT = { has_country_flag = is_hanseatic_league_flag }
7194
+ NOT = { has_country_flag = is_majapahit_empire_flag }
7195
+ NOT = { has_country_flag = is_FBE_flag }
7196
+ NOT = { has_country_flag = is_EY0_flag }
7197
+ NOT = { has_country_flag = is_EY1_flag }
7198
+ NOT = { has_country_flag = is_EY2_flag }
7199
+ NOT = { has_country_flag = is_EY3_flag }
7200
+ NOT = { has_country_flag = is_EY4_flag }
7201
+ NOT = { has_country_flag = is_EY5_flag }
7202
+ NOT = { has_country_flag = is_EY6_flag }
7203
+ NOT = { has_country_flag = is_EY7_flag }
7204
+ NOT = { has_country_flag = is_E11_flag }
7205
+ NOT = { has_country_flag = is_E12_flag }
7206
+ NOT = { has_country_flag = is_E13_flag }
7207
+ NOT = { has_country_flag = is_E14_flag }
7208
+ NOT = { has_country_flag = is_E15_flag }
7209
+ NOT = { has_country_flag = is_E16_flag }
7210
+ NOT = { has_country_flag = is_E17_flag }
7211
+ NOT = { has_country_flag = is_TRK_flag }
7212
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
7213
+ NOT = { has_country_flag = ave_empire_name }
7214
+ NOT = { has_country_flag = ave_state_name }
7215
+ NOT = { has_country_flag = is_FB1_flag }
7216
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
7217
+ NOT = { has_country_flag = is_JPE_flag }
7218
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
7219
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
7220
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
7221
+ NOT = { has_country_flag = is_RPR_flag }
7222
+ NOT = { has_country_flag = is_LPC_flag }
7223
+ NOT = { has_country_flag = is_EY8_flag }
7224
+ NOT = { has_country_flag = is_EY9_flag }
7225
+ NOT = { has_country_flag = is_E10_flag }
7226
+ NOT = { has_country_flag = ave_republic_name }
7227
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
7228
+ NOT = { has_country_flag = is_NCP_flag }
7229
+ NOT = { has_country_flag = change_name_NPI_flag }
7230
+ NOT = { has_country_flag = is_KLU_flag }
705
7231
  NOT = { has_country_flag = is_kingdom_of_god_flag }
706
7232
  NOT = { has_country_flag = is_turkey_flag }
707
7233
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
7234
+ NOT = { has_country_flag = is_burma }
7235
+ NOT = { has_country_flag = is_SIQ_flag }
7236
+ NOT = { has_country_flag = is_FB2_flag }
708
7237
  NOT = { has_country_flag = unified_islam }
7238
+ NOT = { has_country_flag = is_ramannadesa }
7239
+ NOT = { has_country_flag = is_dai_nam_flag }
7240
+ NOT = { has_country_flag = is_viet_nam_flag }
7241
+ NOT = { has_country_flag = is_nusantara_flag }
7242
+ NOT = { has_country_flag = ave_duchy_name }
7243
+ NOT = { has_country_flag = is_KRJ_flag }
7244
+ NOT = { has_country_flag = is_JPS_flag }
7245
+ NOT = { has_country_flag = is_FB3_flag }
7246
+ NOT = { has_country_flag = is_hariphunchai }
7247
+ NOT = { has_country_flag = is_dvaravati }
7248
+ NOT = { has_country_flag = is_srijivaya_flag }
7249
+ NOT = { has_country_flag = is_pue_flag }
7250
+ NOT = { has_country_flag = is_LJN_flag }
7251
+ NOT = { has_country_flag = ave_theocracy_name }
7252
+ NOT = { has_country_flag = is_iran_flag }
7253
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
709
7254
  OR = {
710
7255
  ### USUAL PRIORITY ###
711
7256
  # Colonies
@@ -722,13 +7267,69 @@ frloc_tags_noart_sg_fem_vow_d_en_12a = {
722
7267
  NOT = { has_country_flag = is_china_flag }
723
7268
  NOT = { has_country_flag = is_revolutionary_china_flag }
724
7269
  NOT = { has_country_flag = is_gurkani_flag }
7270
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
725
7271
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
726
- NOT = { has_country_flag = is_hanseatic_league_flag }
7272
+ NOT = { has_country_flag = is_majapahit_empire_flag }
7273
+ NOT = { has_country_flag = is_FBE_flag }
7274
+ NOT = { has_country_flag = is_EY0_flag }
7275
+ NOT = { has_country_flag = is_EY1_flag }
7276
+ NOT = { has_country_flag = is_EY2_flag }
7277
+ NOT = { has_country_flag = is_EY3_flag }
7278
+ NOT = { has_country_flag = is_EY4_flag }
7279
+ NOT = { has_country_flag = is_EY5_flag }
7280
+ NOT = { has_country_flag = is_EY6_flag }
7281
+ NOT = { has_country_flag = is_EY7_flag }
7282
+ NOT = { has_country_flag = is_E11_flag }
7283
+ NOT = { has_country_flag = is_E12_flag }
7284
+ NOT = { has_country_flag = is_E13_flag }
7285
+ NOT = { has_country_flag = is_E14_flag }
7286
+ NOT = { has_country_flag = is_E15_flag }
7287
+ NOT = { has_country_flag = is_E16_flag }
7288
+ NOT = { has_country_flag = is_E17_flag }
7289
+ NOT = { has_country_flag = is_TRK_flag }
7290
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
7291
+ NOT = { has_country_flag = ave_empire_name }
7292
+ NOT = { has_country_flag = ave_state_name }
7293
+ NOT = { has_country_flag = is_FB1_flag }
7294
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
7295
+ NOT = { has_country_flag = is_JPE_flag }
7296
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
7297
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
7298
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
7299
+ NOT = { has_country_flag = is_RPR_flag }
7300
+ NOT = { has_country_flag = is_LPC_flag }
7301
+ NOT = { has_country_flag = is_EY8_flag }
7302
+ NOT = { has_country_flag = is_EY9_flag }
7303
+ NOT = { has_country_flag = is_E10_flag }
7304
+ NOT = { has_country_flag = ave_republic_name }
7305
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
7306
+ NOT = { has_country_flag = is_NCP_flag }
7307
+ NOT = { has_country_flag = change_name_NPI_flag }
7308
+ NOT = { has_country_flag = is_KLU_flag }
727
7309
  NOT = { has_country_flag = is_kingdom_of_god_flag }
728
7310
  NOT = { has_country_flag = is_turkey_flag }
729
7311
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
7312
+ NOT = { has_country_flag = is_burma }
7313
+ NOT = { has_country_flag = is_SIQ_flag }
7314
+ NOT = { has_country_flag = is_FB2_flag }
730
7315
  NOT = { has_country_flag = unified_islam }
7316
+ NOT = { has_country_flag = is_ramannadesa }
7317
+ NOT = { has_country_flag = is_dai_nam_flag }
7318
+ NOT = { has_country_flag = is_viet_nam_flag }
7319
+ NOT = { has_country_flag = is_nusantara_flag }
7320
+ NOT = { has_country_flag = ave_duchy_name }
7321
+ NOT = { has_country_flag = is_KRJ_flag }
7322
+ NOT = { has_country_flag = is_JPS_flag }
7323
+ NOT = { has_country_flag = is_FB3_flag }
7324
+ NOT = { has_country_flag = is_dvaravati }
7325
+ NOT = { has_country_flag = is_srijivaya_flag }
7326
+ NOT = { has_country_flag = is_pue_flag }
7327
+ NOT = { has_country_flag = is_LJN_flag }
7328
+ NOT = { has_country_flag = ave_theocracy_name }
7329
+ NOT = { has_country_flag = is_iran_flag }
7330
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
731
7331
  OR = {
7332
+ has_country_flag = is_hariphunchai
732
7333
  ### USUAL PRIORITY ###
733
7334
  # Eastern Europe / Europe orientale
734
7335
  tag = OKA
@@ -745,9 +7346,7 @@ frloc_tags_noart_sg_fem_vow_d_en_12a = {
745
7346
  # Maghreb
746
7347
  tag = ALG
747
7348
  # Africa / Afrique
748
- tag = ENA
749
- # East African Additions / Ajouts en Afrique orientale
750
- tag = AFA
7349
+ tag = AKS
751
7350
  # Far East / Extr阭e-Orient
752
7351
  tag = AYU
753
7352
  # Indochina Additions / Ajouts en Indochine
@@ -758,18 +7357,74 @@ frloc_tags_noart_sg_fem_vow_d_en_12a = {
758
7357
  }
759
7358
 
760
7359
  frloc_tags_noart_sg_fem_vow_d_a_12b = {
761
- # Ex.: [鴀 Ath鑞es / l'honneur D'Ath鑞es / le tr鬾e D'Ath鑞es / arriver ?Ath鑞es / demander ?Ath鑞es / NOUVELLE-Ath鑞es
7360
+ # Ex.: (? Ath鑞es / l'honneur D'Ath鑞es / le tr鬾e D'Ath鑞es / arriver ?Ath鑞es / demander ?Ath鑞es / NOUVELLE-Ath鑞es
762
7361
  ### HIGHER PRIORITY ###
763
7362
  # override_country_name
764
7363
  NOT = { has_country_flag = is_china_flag }
765
7364
  NOT = { has_country_flag = is_revolutionary_china_flag }
766
7365
  NOT = { has_country_flag = is_gurkani_flag }
7366
+ NOT = { has_country_flag = renamed_to_north_sea_empire }
767
7367
  NOT = { has_country_flag = is_revolutionary_gurkani_flag }
768
- NOT = { has_country_flag = is_hanseatic_league_flag }
7368
+ NOT = { has_country_flag = is_majapahit_empire_flag }
7369
+ NOT = { has_country_flag = is_FBE_flag }
7370
+ NOT = { has_country_flag = is_EY0_flag }
7371
+ NOT = { has_country_flag = is_EY1_flag }
7372
+ NOT = { has_country_flag = is_EY2_flag }
7373
+ NOT = { has_country_flag = is_EY3_flag }
7374
+ NOT = { has_country_flag = is_EY4_flag }
7375
+ NOT = { has_country_flag = is_EY5_flag }
7376
+ NOT = { has_country_flag = is_EY6_flag }
7377
+ NOT = { has_country_flag = is_EY7_flag }
7378
+ NOT = { has_country_flag = is_E11_flag }
7379
+ NOT = { has_country_flag = is_E12_flag }
7380
+ NOT = { has_country_flag = is_E13_flag }
7381
+ NOT = { has_country_flag = is_E14_flag }
7382
+ NOT = { has_country_flag = is_E15_flag }
7383
+ NOT = { has_country_flag = is_E16_flag }
7384
+ NOT = { has_country_flag = is_E17_flag }
7385
+ NOT = { has_country_flag = is_TRK_flag }
7386
+ NOT = { has_country_flag = KOJ_overriden_name_flag }
7387
+ NOT = { has_country_flag = ave_empire_name }
7388
+ NOT = { has_country_flag = ave_state_name }
7389
+ NOT = { has_country_flag = is_FB1_flag }
7390
+ NOT = { has_country_flag = is_BYZ_eastern_roman_empire_flag }
7391
+ NOT = { has_country_flag = is_JPE_flag }
7392
+ NOT = { has_country_flag = is_revolutionary_iran_flag }
7393
+ NOT = { has_country_flag = is_SELJUK_EMPIRE_flag }
7394
+ NOT = { OR = { has_country_flag = is_hanseatic_league_flag has_country_flag = is_FU2_flag } }
7395
+ NOT = { has_country_flag = is_RPR_flag }
7396
+ NOT = { has_country_flag = is_LPC_flag }
7397
+ NOT = { has_country_flag = is_EY8_flag }
7398
+ NOT = { has_country_flag = is_EY9_flag }
7399
+ NOT = { has_country_flag = is_E10_flag }
7400
+ NOT = { has_country_flag = ave_republic_name }
7401
+ NOT = { has_country_flag = is_GREAT_ARMENIA_flag }
7402
+ NOT = { has_country_flag = is_NCP_flag }
7403
+ NOT = { has_country_flag = change_name_NPI_flag }
7404
+ NOT = { has_country_flag = is_KLU_flag }
769
7405
  NOT = { has_country_flag = is_kingdom_of_god_flag }
770
7406
  NOT = { has_country_flag = is_turkey_flag }
771
7407
  NOT = { has_country_flag = is_revolutionary_turkey_flag }
7408
+ NOT = { has_country_flag = is_burma }
7409
+ NOT = { has_country_flag = is_SIQ_flag }
7410
+ NOT = { has_country_flag = is_FB2_flag }
772
7411
  NOT = { has_country_flag = unified_islam }
7412
+ NOT = { has_country_flag = is_ramannadesa }
7413
+ NOT = { has_country_flag = is_dai_nam_flag }
7414
+ NOT = { has_country_flag = is_viet_nam_flag }
7415
+ NOT = { has_country_flag = is_nusantara_flag }
7416
+ NOT = { has_country_flag = ave_duchy_name }
7417
+ NOT = { has_country_flag = is_KRJ_flag }
7418
+ NOT = { has_country_flag = is_JPS_flag }
7419
+ NOT = { has_country_flag = is_FB3_flag }
7420
+ NOT = { has_country_flag = is_hariphunchai }
7421
+ NOT = { has_country_flag = is_dvaravati }
7422
+ NOT = { has_country_flag = is_srijivaya_flag }
7423
+ NOT = { has_country_flag = is_pue_flag }
7424
+ NOT = { has_country_flag = is_LJN_flag }
7425
+ NOT = { has_country_flag = ave_theocracy_name }
7426
+ NOT = { has_country_flag = is_iran_flag }
7427
+ NOT = { has_country_flag = is_ERANSHAHR_flag }
773
7428
  OR = {
774
7429
  ### USUAL PRIORITY ###
775
7430
  # Balkans
@@ -779,7 +7434,11 @@ frloc_tags_noart_sg_fem_vow_d_a_12b = {
779
7434
  # Italy / Italie
780
7435
  tag = AQU tag = URB
781
7436
  # Far East / Extr阭e-Orient
782
- tag = ATJ
7437
+ tag = ATJ tag = IND
7438
+ # Oceanic tags
7439
+ tag = HAW tag = OAH tag = UHW
7440
+ # Leviathan Maori tags
7441
+ tag = AOT
783
7442
  }
784
7443
  }
785
7444
 
@@ -790,6 +7449,1313 @@ frloc_tags_noart_sg_fem_vow_d_a_12b = {
790
7449
 
791
7450
 
792
7451
 
7452
+ #############################
7453
+ ### Areas // Contr閑s ###
7454
+ #############################
7455
+
7456
+ frloc_areas_art_sg_masc_cons_du_du_au_01 = {
7457
+ # Ex.: LE Cachemire / venir DU Cachemire / la conqu阾e DU Cachemire / arriver AU Cachemire / grand(?
7458
+ OR = {
7459
+ area = west_bengal_area
7460
+ area = east_bengal_area
7461
+ area = north_bengal_area
7462
+ area = benin_area
7463
+ area = bhutan_area
7464
+ area = kashmir_area
7465
+ area = cambodia_area
7466
+ area = cap_verde_area
7467
+ area = kongo_area
7468
+ area = dagestan_area
7469
+ area = denmark_area
7470
+ area = greenland_area
7471
+ area = guatemala_area
7472
+ area = guyana_area
7473
+ area = kazakhstan_area
7474
+ area = kenya_area
7475
+ area = north_kurdistan_area
7476
+ area = mecklenburg_area
7477
+ area = mexico_area
7478
+ area = mozambique_area
7479
+ area = nepal_area
7480
+ area = nicaragua_area
7481
+ area = panama_area
7482
+ area = paraguay_area
7483
+ area = basque_country
7484
+ area = wales_area
7485
+ area = notre_dame_mountains_area
7486
+ area = rwanda_area
7487
+ area = suriname_area
7488
+ area = tabarestan_area
7489
+ area = texas_area
7490
+ area = timor_area
7491
+ area = tirol_area
7492
+ area = venezuela_area
7493
+ area = zimbabwe_area
7494
+ }
7495
+ }
7496
+
7497
+ frloc_areas_art_sg_masc_cons_du_du_dansle_02 = {
7498
+ # Ex.: LE Poitou / venir DU Poitou / la conqu阾e DU Poitou / arriver DANS LE Poitou / grand(?
7499
+ OR = {
7500
+ area = baghelkhand_area
7501
+ area = bahari_area
7502
+ area = baisi_rajya_area
7503
+ area = baghena_area
7504
+ area = balchasj_area
7505
+ area = lower_canada_area
7506
+ area = lower_doab_area
7507
+ area = lower_kasai
7508
+ area = lower_niger_area
7509
+ area = yemen_area
7510
+ area = lower_yik_area
7511
+ area = lower_zambezi_area
7512
+ area = beni_area
7513
+ area = berar_area
7514
+ area = betsimasaraka_area
7515
+ area = bihar_area
7516
+ area = bornu_area
7517
+ area = brabant_area
7518
+ area = north_brabant_area
7519
+ area = south_queensland_area
7520
+ area = braunschweig_area
7521
+ area = buha_area
7522
+ area = bundelkhand_area
7523
+ area = bunyoro_area
7524
+ area = butua_area
7525
+ area = buzinza_area
7526
+ area = cajamarca_area
7527
+ area = campeche_area
7528
+ area = bahama_channel_area
7529
+ area = cape_of_good_hope_area
7530
+ area = cape_of_storms_area
7531
+ area = south_carnatic_area
7532
+ area = north_carnatic_area
7533
+ area = kattegat_area
7534
+ area = ceara_area
7535
+ area = chaco_area
7536
+ area = chahar_area
7537
+ area = champa_area
7538
+ area = chiapas_area
7539
+ area = chihuahua_area
7540
+ area = central_chile_area
7541
+ area = southern_chile_area
7542
+ area = northern_chile_area
7543
+ area = chimor_area
7544
+ area = chindwin_area
7545
+ area = shirvan_area
7546
+ area = shewa_area
7547
+ area = chuanbei_area
7548
+ area = chuannan_area
7549
+ area = chubu_area
7550
+ area = eastern_chubu_area
7551
+ area = northeast_mexico_area
7552
+ area = connacht_area
7553
+ area = connecticut_valley_area
7554
+ area = costa_rica_area
7555
+ area = cuyo_area
7556
+ area = dakota_area
7557
+ area = south_dakota_area
7558
+ area = damot_area
7559
+ area = delta_area
7560
+ area = dendi_area
7561
+ area = syrian_desert_area
7562
+ area = desh_area
7563
+ area = salish_sea_area
7564
+ area = hecate_strait_area
7565
+ area = denmark_strait_area
7566
+ area = dhofar_area
7567
+ area = jolof_area
7568
+ area = west_dniepr_area
7569
+ area = east_dniepr_area
7570
+ area = lower_don_area
7571
+ area = durango_area
7572
+ area = farsistan_area
7573
+ area = fezzan_area
7574
+ area = futa_jallon_area
7575
+ area = fujian_area
7576
+ area = furdan_area
7577
+ area = west_gansu_area
7578
+ area = gansu_area
7579
+ area = garjat_area
7580
+ area = western_morocco_area
7581
+ area = gird_area
7582
+ area = central_mongolia_area
7583
+ area = goias_area
7584
+ area = gulf_of_alaska_area
7585
+ area = gulf_of_guinea_area
7586
+ area = gulf_of_guinea_sea_area
7587
+ area = bay_of_bengal_area
7588
+ area = gulf_of_mexico_area
7589
+ area = gulf_of_panama_area
7590
+ area = gulf_of_st_lawrence_area
7591
+ area = persian_gulf_area
7592
+ area = gondwana_area
7593
+ area = grao_para_area
7594
+ area = guanajuato_area
7595
+ area = west_guangdong_area
7596
+ area = guangdong_area
7597
+ area = guangxi_area
7598
+ area = guapore_area
7599
+ area = west_sao_paolo_area
7600
+ area = guerrero_area
7601
+ area = gulf_stream_area
7602
+ area = hadiya_area
7603
+ area = hamgyeong_area
7604
+ area = upper_canada_area
7605
+ area = upper_doab_area
7606
+ area = upper_guyana_area
7607
+ area = upper_mahanadi_area
7608
+ area = upper_missouri_area
7609
+ area = upper_ontario_area
7610
+ area = upper_peru
7611
+ area = upper_yemen_area
7612
+ area = upper_zambezi_area
7613
+ area = south_hebei_area
7614
+ area = hebei_area
7615
+ area = central_heilongjiang_area
7616
+ area = heilongjiang_area
7617
+ area = east_heilongjiang_area
7618
+ area = henan_area
7619
+ area = north_henan_area
7620
+ area = hokuriku_area
7621
+ area = honduras_area
7622
+ area = huguang_area
7623
+ area = hunan_area
7624
+ area = jalisco_area
7625
+ area = jangladesh_area
7626
+ area = jetysuu_area
7627
+ area = jharkhand_area
7628
+ area = south_jiangsu_area
7629
+ area = jiangsu_area
7630
+ area = jiangxi_area
7631
+ area = jilin_area
7632
+ area = jubba_area
7633
+ area = jujuy_area
7634
+ area = jutland_area
7635
+ area = kabulistan_area
7636
+ area = kachin_area
7637
+ area = southern_ethiopia_area
7638
+ area = kamchatka_area
7639
+ area = kanara_area
7640
+ area = kanem_area
7641
+ area = kansas_area
7642
+ area = kanto_area
7643
+ area = eastern_kanto_area
7644
+ area = karenni_area
7645
+ area = kasai_area
7646
+ area = kentucky_area
7647
+ area = western_kentucky_area
7648
+ area = kham_area
7649
+ area = khandesh_area
7650
+ area = khuzestan_area
7651
+ area = kinai_area
7652
+ area = konkan_area
7653
+ area = kongu_area
7654
+ area = kurdufan_area
7655
+ area = kuntisuyu_area
7656
+ area = kyushu_area
7657
+ area = northern_kyushu
7658
+ area = kyzylkum_area
7659
+ area = labrador_area
7660
+ area = south_iroquoisia_area
7661
+ area = lake_superior_area
7662
+ area = languedoc_area
7663
+ area = south_lanka_area
7664
+ area = lanka_area
7665
+ area = lazio_area
7666
+ area = leinster_area
7667
+ area = leon_area
7668
+ area = liaoning_area
7669
+ area = luristan_area
7670
+ area = luba_area
7671
+ area = massina_area
7672
+ area = maidan_area
7673
+ area = maine_area
7674
+ area = eastern_maine_area
7675
+ area = makran_area
7676
+ area = uticulo_makuana_area
7677
+ area = malwa_area
7678
+ area = manding_area
7679
+ area = manitoba_area
7680
+ area = maranhao_area
7681
+ area = marrekesh_area
7682
+ area = southern_morocco_area
7683
+ area = northern_morocco_area
7684
+ area = marwar_area
7685
+ area = maryland_area
7686
+ area = massachusetts_bay_area
7687
+ area = adamawa_plateau_area
7688
+ area = matamba_area
7689
+ area = mato_grosso_area
7690
+ area = mekong_area
7691
+ area = mewar_area
7692
+ area = michigan_area
7693
+ area = michoacan_area
7694
+ area = minas_gerais_area
7695
+ area = minnessota_area
7696
+ area = mississippi_area
7697
+ area = mithila_area
7698
+ area = mogostan_area
7699
+ area = moxos_area
7700
+ area = munster_area
7701
+ area = limpopo_area
7702
+ area = nayarit_area
7703
+ area = nafud_area
7704
+ area = nehuenken_area
7705
+ area = ngari_area
7706
+ area = ngonde_area
7707
+ area = northern_norway
7708
+ area = norrland_area
7709
+ area = great_woods_area
7710
+ area = new_mexico_area
7711
+ area = south_pacific_area
7712
+ area = east_pacific_ocean_area
7713
+ area = north_pacific_area
7714
+ area = palatinate_area
7715
+ area = pecos_area
7716
+ area = pernambuco_area
7717
+ area = piaui_area
7718
+ area = piedmont_north_america_area
7719
+ area = piedmont_area
7720
+ area = south_carolina_piedmont_area
7721
+ area = pilbara_area
7722
+ area = poitou_area
7723
+ area = potosi_area
7724
+ area = pripyat_area
7725
+ area = purvanchal_area
7726
+ area = pyongan_area
7727
+ area = north_queensland_area
7728
+ area = raichur_doab_area
7729
+ area = arakan_area
7730
+ area = rayalaseema_area
7731
+ area = rio_grande_do_sol_area
7732
+ area = ruvuma_area
7733
+ area = darfur_central_sahara_area
7734
+ area = western_sahara_area
7735
+ area = north_saharan_area
7736
+ area = said_area
7737
+ area = sakalava_area
7738
+ area = samtskhe_area
7739
+ area = sanindo_area
7740
+ area = sankuru_area
7741
+ area = saigoku_area
7742
+ area = saurashtra_area
7743
+ area = shaanxi_area
7744
+ area = katanga_area
7745
+ area = shandong_area
7746
+ area = shanxi_area
7747
+ area = shahrizor_area
7748
+ area = shire_area
7749
+ area = sichuan_area
7750
+ area = sind_sagar_area
7751
+ area = sindh_area
7752
+ area = northern_sindh_area
7753
+ area = sistan_area
7754
+ area = holstein_area
7755
+ area = red_river_delta_area
7756
+ area = sonora_area
7757
+ area = sus_area
7758
+ area = svealand_area
7759
+ area = ostra_svealand_area
7760
+ area = syr_darya_area
7761
+ area = tafilalt_area
7762
+ area = rio_grande_area
7763
+ area = tannu_uriankhai_area
7764
+ area = tapti_area
7765
+ area = chokwe_area
7766
+ area = tekrur_area
7767
+ area = golconda_area
7768
+ area = telingana_area
7769
+ area = tenasserim_area
7770
+ area = north_tenasserim_area
7771
+ area = choctaw_area
7772
+ area = tigray_area
7773
+ area = algiers_area
7774
+ area = thohoku_area
7775
+ area = transvaal_area
7776
+ area = polynesian_triangle_area
7777
+ area = tripura_area
7778
+ area = utsang_area
7779
+ area = tucuman_area
7780
+ area = turpan_kumul_area
7781
+ area = loire_area
7782
+ area = valencia_area
7783
+ area = eastern_mexico_area
7784
+ area = western_norway
7785
+ area = southern_australia_area
7786
+ area = wessex_area
7787
+ area = wisconsin_area
7788
+ area = yedisan_area
7789
+ area = yorkshire_area
7790
+ area = yucatan_area
7791
+ area = east_yucatan_area
7792
+ area = yun_gui_borderland_area
7793
+ area = yun_gui_area
7794
+ area = zacatecas_area
7795
+ area = zhejiang_area
7796
+ }
7797
+ }
7798
+
7799
+ frloc_areas_art_sg_masc_cons_du_du_surle_03 = {
7800
+ # Ex.: LE Plateau du Colorado / venir DU Plateau du Colorado / la conqu阾e DU Plateau du Colorado / arriver SUR LE Plateau du Colorado / grand(?
7801
+ OR = {
7802
+ area = colorado_plateau_area
7803
+ area = interior_plateau_area
7804
+ area = south_african_plateau_area
7805
+ }
7806
+ }
7807
+
7808
+ frloc_areas_art_sg_masc_vow_del_del_en_04 = {
7809
+ # Ex.: L'Arkansas / venir DE L'Arkansas / la conqu阾e DE L'Arkansas / arriver EN Arkansas / grand(?
7810
+ OR = {
7811
+ area = inner_ontario_area
7812
+ area = ajuuran_area
7813
+ area = angola_namibia_area
7814
+ area = aragon_area
7815
+ area = arizona_area
7816
+ area = mississippi_plain_area
7817
+ area = assam_area
7818
+ area = tabriz_area
7819
+ area = illinois_country_area
7820
+ area = orissa_area
7821
+ area = uganda_area
7822
+ area = tsang_area
7823
+ }
7824
+ }
7825
+
7826
+ frloc_areas_art_sg_masc_vow_del_del_dansl_05 = {
7827
+ # Ex.: L'Orl閍nais / venir DE L'Orl閍nais / la conqu阾e DE L'Orl閍nais / arriver DANS L'Orl閍nais / grand(?
7828
+ OR = {
7829
+ area = alabama_area
7830
+ area = alentejo_area
7831
+ area = alfold_area
7832
+ area = tarim_basin_area
7833
+ area = amapa_area
7834
+ area = amdo_area
7835
+ area = andhra_area
7836
+ area = south_anhui_area
7837
+ area = anhui_area
7838
+ area = vietnam_area
7839
+ area = antisuyu_area
7840
+ area = asir_area
7841
+ area = assiniboia_area
7842
+ area = atacora_oueme_area
7843
+ area = athabasca_area
7844
+ area = north_atlantic_area
7845
+ area = south_atlantic_area
7846
+ area = aussa_area
7847
+ area = azbin_area
7848
+ area = east_azbin_area
7849
+ area = hadramut_area
7850
+ area = ifat_area
7851
+ area = central_jilin_area
7852
+ area = ilan_hala_area
7853
+ area = illawara_area
7854
+ area = southern_illinois_area
7855
+ area = miami_river_area
7856
+ area = iowa_area
7857
+ area = iraq_arabi_area
7858
+ area = iraq_e_ajam_area
7859
+ area = oaxaca_area
7860
+ area = ob_area
7861
+ area = south_indian_ocean_area
7862
+ area = western_indian_ocean_area
7863
+ area = eastern_indian_ocean_area
7864
+ area = ofaie_area
7865
+ area = ogaden_area
7866
+ area = ohio_country_area
7867
+ area = oregon_area
7868
+ area = orleans_area
7869
+ area = eastern_norway
7870
+ area = ural_area
7871
+ area = ottawa_valley_area
7872
+ area = ucayali_area
7873
+ }
7874
+ }
7875
+
7876
+ frloc_areas_art_sg_masc_vow_d_del_en_06 = {
7877
+ # Ex.: L'Ulster / venir D'Ulster / la conqu阾e DE L'Ulster / arriver EN Ulster / grand(?
7878
+ OR = {
7879
+ area = ulster_area
7880
+ }
7881
+ }
7882
+
7883
+ frloc_areas_noart_sg_masc_cons_de_de_a_07 = {
7884
+ # Ex.: (? Ta飛an / venir DE Ta飛an / la conqu阾e DE Ta飛an / arriver ?Ta飛an / grand(?
7885
+ OR = {
7886
+ area = bahrain_area
7887
+ area = brunei_area
7888
+ area = shikoku_area
7889
+ area = south_sulawesi_area
7890
+ area = sulawesi_area
7891
+ area = taiwan_area
7892
+ }
7893
+ }
7894
+
7895
+ frloc_areas_noart_sg_masc_vow_d_d_a_08 = {
7896
+ # Ex.: (? Ha飔i / venir D'Ha飔i / la conqu阾e D'Ha飔i / arriver ?Ha飔i / grand(?
7897
+ OR = {
7898
+ area = oman_area
7899
+ area = hispaniola_area
7900
+ area = hokkaido_area
7901
+ }
7902
+ }
7903
+
7904
+ frloc_areas_art_sg_fem_cons_lacontreede_orig_masc_09 = {
7905
+ # Ex.: LA CONTR蒃 DE Macassar / venir DE LA CONTR蒃 DE Macassar / la conqu阾e DE LA CONTR蒃 DE Macassar / arriver DANS LA CONTR蒃 DE Macassar / grandE (= la contr閑 de Macassar)
7906
+ OR = {
7907
+ area = cuba_area
7908
+ area = east_cuba_area
7909
+ area = hudavendigar_area
7910
+ area = southern_madagascar
7911
+ area = qasim_area
7912
+ area = yaroslavl_area
7913
+ area = kalimantan_area
7914
+ area = kutai_area
7915
+ area = makassar_area
7916
+ area = malabar_area
7917
+ area = maracaibo_area
7918
+ area = rum_area
7919
+ area = sabah_area
7920
+ area = sao_tome_area
7921
+ area = vladimir_area
7922
+ }
7923
+ }
7924
+
7925
+ frloc_areas_art_sg_fem_vow_lacontreed_orig_fem_10 = {
7926
+ # Ex.: LA CONTR蒃 D'Alep / venir DE LA CONTR蒃 D'Alep / la conqu阾e DE LA CONTR蒃 D'Alep / arriver DANS LA CONTR蒃 D'Alep / grandE (= la contr閑 de Alep)
7927
+ OR = {
7928
+ area = angkor_area
7929
+ area = north_sumatra_area
7930
+ area = ahmedabad_area
7931
+ area = ahmednagar_area
7932
+ area = aleppo_area
7933
+ area = ankara_area
7934
+ area = aqmola_area
7935
+ area = arkhangelsk_area
7936
+ area = arys_area
7937
+ area = astrakhan_area
7938
+ area = aydin_area
7939
+ area = azov_area
7940
+ area = erzurum_area
7941
+ area = herat_area
7942
+ area = iquitos_area
7943
+ area = irkutsk_area
7944
+ area = isfahan_area
7945
+ area = okhotsk_area
7946
+ area = ordos_area
7947
+ area = uliastai_area
7948
+ }
7949
+ }
7950
+
7951
+ frloc_areas_noart_sg_fem_cons_de_de_a_11 = {
7952
+ # Ex.: (? Terre-Neuve / venir DE Terre-Neuve / la conqu阾e DE Terre-Neuve / arriver ?Terre-Neuve / grandE
7953
+ OR = {
7954
+ area = palawan_area
7955
+ area = central_sumatra_area
7956
+ area = sakhalin_area
7957
+ area = te_ika_a_maui_hauauru_area
7958
+ area = te_ika_a_maui_waho_area
7959
+ area = te_waipounamu_area
7960
+ area = newfoundland_area
7961
+ }
7962
+ }
7963
+
7964
+ frloc_areas_art_sg_fem_cons_lacontreede_orig_fem_12 = {
7965
+ # Ex.: LA CONTR蒃 DE Buenos Aires / venir DE LA CONTR蒃 DE Buenos Aires / la conqu阾e DE LA CONTR蒃 DE Buenos Aires / arriver DANS LA CONTR蒃 DE Buenos Aires / grandE (= la contr閑 de Buenos Aires)
7966
+ OR = {
7967
+ area = al_wahat_area
7968
+ area = vostani_area
7969
+ area = yamamah_area
7970
+ area = balkh_area
7971
+ area = banjar_area
7972
+ area = banten_area
7973
+ area = basra_area
7974
+ area = batak_area
7975
+ area = beloozero_area
7976
+ area = birjand_area
7977
+ area = bogota_area
7978
+ area = buenos_aires_area
7979
+ area = champasak_area
7980
+ area = northern_thai_area
7981
+ area = coquivacoa_area
7982
+ area = jenne_area
7983
+ area = djerba_area
7984
+ area = dongola_area
7985
+ area = dulkadir_area
7986
+ area = ferghana_area
7987
+ area = gaur_area
7988
+ area = germiyan_area
7989
+ area = ghor_area
7990
+ area = huanuco_area
7991
+ area = jambi_area
7992
+ area = central_java_area
7993
+ area = west_java_area
7994
+ area = east_java_area
7995
+ area = jaipur_area
7996
+ area = johor_area
7997
+ area = hausa_area
7998
+ area = katehar_area
7999
+ area = katsina_area
8000
+ area = kazan_area
8001
+ area = kerman_area
8002
+ area = khiva_area
8003
+ area = khorat_area
8004
+ area = termez_area
8005
+ area = altai_sayan_area
8006
+ area = kong_area
8007
+ area = lahore_area
8008
+ area = mecca_area
8009
+ area = south_sumatra_area
8010
+ area = north_laos_area
8011
+ area = luzon_area
8012
+ area = southern_luzon_area
8013
+ area = madura_area
8014
+ area = mahra_area
8015
+ area = malacca_area
8016
+ area = mascat_area
8017
+ area = mashhad_area
8018
+ area = medina_area
8019
+ area = merv_area
8020
+ area = minangkabau_area
8021
+ area = west_mindanao_area
8022
+ area = mindanao_area
8023
+ area = minsk_area
8024
+ area = mogadishu_area
8025
+ area = mombasa_area
8026
+ area = multan_area
8027
+ area = mysore_area
8028
+ area = ningguta_area
8029
+ area = novgorod_area
8030
+ area = patan_area
8031
+ area = western_australia_area
8032
+ area = pontal_area
8033
+ area = popayan_area
8034
+ area = pskov_area
8035
+ area = puebla_area
8036
+ area = kalat_area
8037
+ area = cicigar_area
8038
+ area = quelimane_area
8039
+ area = quito_area
8040
+ area = ryazan_area
8041
+ area = rio_de_janeiro_area
8042
+ area = sakha_area
8043
+ area = samara_area
8044
+ area = sandomierz_area
8045
+ area = sennar_area
8046
+ area = sao_francisco_area
8047
+ area = sao_paolo_area
8048
+ area = saratov_area
8049
+ area = shanshan_area
8050
+ area = sirhind_area
8051
+ area = smolensk_area
8052
+ area = suzdal_area
8053
+ area = sukhothai_area
8054
+ area = surabaya_area
8055
+ area = tabuk_area
8056
+ area = azerbaijan_area
8057
+ area = tambov_area
8058
+ area = chernigov_area
8059
+ area = tanjore_area
8060
+ area = toledo_area
8061
+ area = tver_area
8062
+ area = vientiane_area
8063
+ area = vologda_area
8064
+ area = xilin_gol_area
8065
+ area = zazzau_area
8066
+ }
8067
+ }
8068
+
8069
+ frloc_areas_art_sg_fem_cons_de_dela_en_13 = {
8070
+ # Ex.: LA Normandie / venir DE Normandie / la conqu阾e DE LA Normandie / arriver EN Normandie / grandE
8071
+ OR = {
8072
+ area = bashkiria_area
8073
+ area = upper_rhineland_area
8074
+ area = bahia_area
8075
+ area = lower_acadia_area
8076
+ area = lower_andalucia_area
8077
+ area = lower_bavaria_area
8078
+ area = lower_burma_area
8079
+ area = baja_california_area
8080
+ area = franconia_area
8081
+ area = lower_nubia_area
8082
+ area = lower_rhineland_area
8083
+ area = lower_saxony_area
8084
+ area = lower_volta_area
8085
+ area = east_bavaria_area
8086
+ area = central_burma_area
8087
+ area = bohemia_area
8088
+ area = bosnia_area
8089
+ area = west_burgundy_area
8090
+ area = bourgogne_area
8091
+ area = buryatia_area
8092
+ area = brittany_area
8093
+ area = bulgaria_area
8094
+ area = calabria_area
8095
+ area = northern_california_area
8096
+ area = naples_area
8097
+ area = northern_australia_area
8098
+ area = karelia_area
8099
+ area = north_karelia
8100
+ area = carinthia_area
8101
+ area = carolinas_area
8102
+ area = south_carolina_area
8103
+ area = castille_area
8104
+ area = asturias_area
8105
+ area = catalonia_area
8106
+ area = champagne_area
8107
+ area = circassia_area
8108
+ area = columbia_river_area
8109
+ area = south_korea_area
8110
+ area = western_korea_area
8111
+ area = eastern_korea_area
8112
+ area = curonia_area
8113
+ area = crimea_area
8114
+ area = croatia_area
8115
+ area = kuyavia_area
8116
+ area = cukurova_area
8117
+ area = cyrenaica_area
8118
+ area = east_adriatic_coast_area
8119
+ area = diamantina_area
8120
+ area = al_jazira_area
8121
+ area = zungaria_area
8122
+ area = north_zungaria
8123
+ area = finland_area
8124
+ area = florida_area
8125
+ area = west_florida_area
8126
+ area = north_florida_area
8127
+ area = frisia_area
8128
+ area = galicia_area
8129
+ area = galich_area
8130
+ area = pyrenees_area
8131
+ area = american_georgia_area
8132
+ area = vastra_gotaland_area
8133
+ area = gotaland_area
8134
+ area = gran_chichimeca_area
8135
+ area = wielkopolska_area
8136
+ area = northern_greece_area
8137
+ area = guinea_coast_area
8138
+ area = guyenne_area
8139
+ area = upper_acadia_area
8140
+ area = upper_andalucia_area
8141
+ area = upper_bavaria_area
8142
+ area = upper_burma_area
8143
+ area = california_area
8144
+ area = upper_franconia_area
8145
+ area = upper_american_georgia_area
8146
+ area = lithuania_area
8147
+ area = upper_louisiana_area
8148
+ area = upper_nubia_area
8149
+ area = upper_volta_area
8150
+ area = hesse_area
8151
+ area = holland_area
8152
+ area = huasteca_area
8153
+ area = huronia_area
8154
+ area = kabylia_area
8155
+ area = kashgaria_area
8156
+ area = kama_area
8157
+ area = kara_area
8158
+ area = kastamonu_area
8159
+ area = karaman_area
8160
+ area = kartli_kakheti_area
8161
+ area = laponia_area
8162
+ area = laurentian_area
8163
+ area = liguria_area
8164
+ area = livonia_area
8165
+ area = lombardy_area
8166
+ area = lorraine_area
8167
+ area = lower_louisiana_area
8168
+ area = lusatia_area
8169
+ area = macaronesia_area
8170
+ area = macedonia_area
8171
+ area = majarteen_area
8172
+ area = malaya_area
8173
+ area = north_malaya_area
8174
+ area = mazovia_area
8175
+ area = melanesia_area
8176
+ area = misiones_area
8177
+ area = west_micronesia_area
8178
+ area = micronesia_area
8179
+ area = moldavia_area
8180
+ area = outer_mongolia_area
8181
+ area = inner_mongolia_area
8182
+ area = eastern_mongolia
8183
+ area = moravia_area
8184
+ area = morea_area
8185
+ area = moscow_area
8186
+ area = neumark_area
8187
+ area = normandy_area
8188
+ area = eastern_australia_area
8189
+ area = palestine_area
8190
+ area = patagonia_area
8191
+ area = perm_area
8192
+ area = malopolska_area
8193
+ area = picardy_area
8194
+ area = podlasie_area
8195
+ area = podolia_volhynia_area
8196
+ area = central_poland_area
8197
+ area = polynesia_area
8198
+ area = eastern_polynesia_area
8199
+ area = northern_polynesia_area
8200
+ area = vorpommern_area
8201
+ area = hinter_pommern_area
8202
+ area = pomor_area
8203
+ area = provence_area
8204
+ area = west_prussia_area
8205
+ area = east_prussia_area
8206
+ area = rascia_area
8207
+ area = north_rhine_area
8208
+ area = romandie_area
8209
+ area = white_ruthenia_area
8210
+ area = red_ruthenia_area
8211
+ area = samogitia_area
8212
+ area = savoy_dauphine_area
8213
+ area = south_saxony_area
8214
+ area = northern_saxony_area
8215
+ area = skaneland_area
8216
+ area = serbia_area
8217
+ area = central_siberia_area
8218
+ area = western_sicily_area
8219
+ area = sicily_area
8220
+ area = silesia_area
8221
+ area = silistria_area
8222
+ area = slovakia_area
8223
+ area = lower_swabia_area
8224
+ area = upper_swabia_area
8225
+ area = switzerland_area
8226
+ area = syria_area
8227
+ area = tanzania_area
8228
+ area = tasmania_area
8229
+ area = central_thai_area
8230
+ area = thrace_area
8231
+ area = thuringia_area
8232
+ area = tuscany_area
8233
+ area = transcaspia_area
8234
+ area = transdanubia_area
8235
+ area = trans_jordan_area
8236
+ area = south_appalachia_area
8237
+ area = transoxiana_area
8238
+ area = southern_transylvania_area
8239
+ area = transylvania_area
8240
+ area = tripolitania_area
8241
+ area = tunisia_area
8242
+ area = wallachia_area
8243
+ area = appalachia_area
8244
+ area = venetia_area
8245
+ area = chesapeake_area
8246
+ area = volga_area
8247
+ area = volhynia_area
8248
+ area = wallonia_area
8249
+ area = westphalia_area
8250
+ area = north_westphalia_area
8251
+ area = susquehanna_area
8252
+ area = yakutia_area
8253
+ area = zambia_area
8254
+ area = zaporizhia_area
8255
+ }
8256
+ }
8257
+
8258
+ frloc_areas_art_sg_fem_cons_dela_dela_en_14 = {
8259
+ # Ex.: LA M閐iterran閑 occidentale / venir DE LA M閐iterran閑 occidentale / la conqu阾e DE LA M閐iterran閑 occidentale / arriver EN M閐iterran閑 occidentale / grandE
8260
+ OR = {
8261
+ area = new_york_area
8262
+ area = western_mediterrenean_area
8263
+ area = eastern_mediterrenean_area
8264
+ area = st_john_valley_area
8265
+ area = arabian_sea_area
8266
+ area = baltic_area
8267
+ area = white_sea_area
8268
+ area = celtic_sea_area
8269
+ area = west_african_coast_sea_area
8270
+ area = andaman_sea_area
8271
+ area = argentine_sea_area
8272
+ area = berring_sea_area
8273
+ area = celebes_sea_area
8274
+ area = south_china_sea_area
8275
+ area = east_china_sea_area
8276
+ area = coral_sea_area
8277
+ area = sea_of_grau_area
8278
+ area = java_sea_area
8279
+ area = hudson_bay_sea_area
8280
+ area = norwegian_sea_area
8281
+ area = tasman_sea_area
8282
+ area = caribbean_sea_area
8283
+ area = philipine_sea_area
8284
+ area = sargasso_sea_area
8285
+ area = sea_of_okhotsk_area
8286
+ area = chilean_sea_area
8287
+ area = sea_of_japan_area
8288
+ area = sea_of_labrador_area
8289
+ area = north_sea_area
8290
+ area = black_sea_area
8291
+ area = red_sea_area
8292
+ }
8293
+ }
8294
+
8295
+ frloc_areas_art_sg_fem_cons_dela_dela_dansla_15 = {
8296
+ # Ex.: LA Vall閑 du P?/ venir DE LA Vall閑 du P?/ la conqu阾e DE LA Vall閑 du P?/ arriver DANS LA Vall閑 du P?/ grandE
8297
+ OR = {
8298
+ area = bahia_blanca_area
8299
+ area = bay_of_biscay_area
8300
+ area = hudson_bay_area
8301
+ area = james_bay_area
8302
+ area = banda_oriental_area
8303
+ area = beieras_area
8304
+ area = niger_bend_area
8305
+ area = cordillera_occidental_area
8306
+ area = central_swahili_coast_area
8307
+ area = barbary_coast_area
8308
+ area = pirate_coast_area
8309
+ area = somaliland_area
8310
+ area = persian_gulf_coast
8311
+ area = peruan_coast
8312
+ area = northern_swahili_coast_area
8313
+ area = cote_nord_area
8314
+ area = great_australian_bight_area
8315
+ area = great_valley_area
8316
+ area = kolyma_area
8317
+ area = llano_estacado_area
8318
+ area = english_channel_area
8319
+ area = mittelmark_area
8320
+ area = mixteca_area
8321
+ area = nogai_area
8322
+ area = southern_pampas_area
8323
+ area = papua_area
8324
+ area = vogelkop_area
8325
+ area = top_end_area
8326
+ area = red_river_area
8327
+ area = saskatchewan_area
8328
+ area = snake_river_area
8329
+ area = murray_river_area
8330
+ area = tierra_caliente_area
8331
+ area = tihama_al_yemen_area
8332
+ area = tunguska_area
8333
+ area = central_valley_area
8334
+ area = hudson_valley_area
8335
+ area = delaware_valley_area
8336
+ area = po_valley_area
8337
+ area = weser_area
8338
+ }
8339
+ }
8340
+
8341
+ frloc_areas_art_sg_fem_cons_dela_dela_surla_16 = {
8342
+ # Ex.: LA C魌e pacifique / venir DE LA C魌e pacifique / la conqu阾e DE LA C魌e pacifique / arriver SUR LA C魌e pacifique / grandE
8343
+ OR = {
8344
+ area = skeleton_coast_area
8345
+ area = north_pacific_coast_area
8346
+ }
8347
+ }
8348
+
8349
+ frloc_areas_art_sg_fem_cons_dela_dela_ala_17 = {
8350
+ # Ex.: LA Dominique / venir DE LA Dominique / la conqu阾e DE LA Dominique / arriver ?LA Dominique / grandE
8351
+ OR = {
8352
+ area = dominica_area
8353
+ }
8354
+ }
8355
+
8356
+ frloc_areas_art_sg_fem_vow_d_del_en_18 = {
8357
+ # Ex.: L'Alsace / venir D'Alsace / la conqu阾e DE L'Alsace / arriver EN Alsace / grandE
8358
+ OR = {
8359
+ area = alaska_area
8360
+ area = east_alaska_area
8361
+ area = albania_area
8362
+ area = prairies_area
8363
+ area = alsace_area
8364
+ area = amazon_area
8365
+ area = apacheria_area
8366
+ area = apulia_area
8367
+ area = armenia_area
8368
+ area = austria_proper_area
8369
+ area = inner_austria_area
8370
+ area = massif_central_area
8371
+ area = oudh_area
8372
+ area = emilia_romagna_area
8373
+ area = slavonia_area
8374
+ area = east_anglia_area
8375
+ area = estonia_ingria_area
8376
+ area = extremadura_area
8377
+ area = central_ethiopia_area
8378
+ area = ile_de_france_area
8379
+ area = imereti_area
8380
+ area = iroquoisia_area
8381
+ area = yrtesh_area
8382
+ area = bothnia_area
8383
+ area = sloboda_ukraine_area
8384
+ }
8385
+ }
8386
+
8387
+ frloc_areas_art_sg_fem_vow_del_del_dansl_19 = {
8388
+ # Ex.: L'Angleterre du Nord / venir D'Angleterre du Nord / la conqu阾e DE L'Angleterre du Nord / arriver DANS L'Angleterre du Nord / grandE
8389
+ OR = {
8390
+ area = colombian_amazonas_area
8391
+ area = scottish_marches_area
8392
+ area = ishim_area
8393
+ area = oka_area
8394
+ }
8395
+ }
8396
+
8397
+ frloc_areas_art_pl_masc_des_des_dansles_20 = {
8398
+ # Ex.: LES Highlands / venir DES Highlands / la conqu阾e DES Highlands / arriver DANS LES Highlands / grandS
8399
+ OR = {
8400
+ area = aegean_archipelago_area
8401
+ area = badlands_area
8402
+ area = straits_of_georgia_area
8403
+ area = highlands_area
8404
+ area = home_counties_area
8405
+ area = lowlands_area
8406
+ area = west_midlands_area
8407
+ area = east_midlands_area
8408
+ area = gulf_of_arabia_area
8409
+ area = erzgebirge_area
8410
+ area = naga_hills_area
8411
+ area = ouled_nail_area
8412
+ area = ozarks_area
8413
+ area = himalayan_hills_area
8414
+ }
8415
+ }
8416
+
8417
+ frloc_areas_art_pl_masc_des_des_surles_21 = {
8418
+ # Ex.: LES Hauts Plateaux / venir DES Hauts Plateaux / la conqu阾e DES Hauts Plateaux / arriver SUR LES Hauts Plateaux / grandS
8419
+ OR = {
8420
+ area = hautes_plaines_area
8421
+ }
8422
+ }
8423
+
8424
+ frloc_areas_art_pl_fem_des_des_aux_22 = {
8425
+ # Ex.: LES Bal閍res / venir DES Bal閍res / la conqu阾e DES Bal閍res / arriver AUX Bal閍res / grandES
8426
+ OR = {
8427
+ area = baleares_area
8428
+ area = fiji_area
8429
+ area = lucayan_area
8430
+ area = mascarenes_area
8431
+ area = molluca_area
8432
+ }
8433
+ }
8434
+
8435
+ frloc_areas_art_pl_fem_des_des_dansles_23 = {
8436
+ # Ex.: LES Flandres / venir DES Flandres / la conqu阾e DES Flandres / arriver DANS LES Flandres / grandES
8437
+ OR = {
8438
+ area = westsylvania_area
8439
+ area = patagonian_andes
8440
+ area = guatemala_lowlands_area
8441
+ area = shan_hill_area
8442
+ area = west_africa_coast_area
8443
+ area = red_sea_coast_area
8444
+ area = coastal_kongo
8445
+ area = flanders_area
8446
+ area = greater_antilles_area
8447
+ area = high_plains_area
8448
+ area = madagascar_highlands_area
8449
+ area = kingdom_of_the_isles_area
8450
+ area = spice_islands_area
8451
+ area = subarctic_islands_area
8452
+ area = south_atlantic_islands_area
8453
+ area = indian_ocean_islands_area
8454
+ area = corsica_sardinia_area
8455
+ area = windward_islands_area
8456
+ area = leeward_islands_area
8457
+ area = central_llanos_area
8458
+ area = western_llanos
8459
+ area = eastern_llanos
8460
+ area = central_italy_area
8461
+ area = tay_nguyen_area
8462
+ area = lesser_sunda_islands_area
8463
+ area = central_plains_area
8464
+ area = lower_plains_area
8465
+ area = texas_plains_area
8466
+ area = coastal_prarie_area
8467
+ area = trois_rivieres_area
8468
+ area = visayas_area
8469
+ }
8470
+ }
8471
+
8472
+ frloc_areas_art_pl_fem_des_des_surles_24 = {
8473
+ # Ex.: LES C魌es du Br閟il / venir DES C魌es du Br閟il / la conqu阾e DES C魌es du Br閟il / arriver SUR LES C魌es du Br閟il / grandES
8474
+ OR = {
8475
+ area = swahili_coast_sea_area
8476
+ area = coast_of_brazil_sea_area
8477
+ area = coast_of_guyana_area
8478
+ }
8479
+ }
8480
+
8481
+ frloc_areas_noart_pl_fem_de_de_en_25 = {
8482
+ # Ex.: (? Banda et Arafura / venir DE Banda et Arafura / la conqu阾e DE Banda et Arafura / arriver EN Banda et Arafura / grandES
8483
+ OR = {
8484
+ area = banda_arafura_seas_area
8485
+ }
8486
+ }
8487
+
8488
+
8489
+
8490
+ ##############################
8491
+ ### Regions // R間ions ###
8492
+ ##############################
8493
+
8494
+ frloc_regions_art_sg_masc_cons_du_du_au_01 = {
8495
+ # Ex.: LE Magreb / venir DU Magreb / la conqu阾e DU Magreb / arriver AU Magreb / grand(?
8496
+ OR = {
8497
+ region = maghreb_region
8498
+ region = mashriq_region
8499
+ region = khorasan_region
8500
+ region = niger_region
8501
+ region = sahel_region
8502
+ region = kongo_region
8503
+ region = tibet_region
8504
+ region = bengal_region
8505
+ region = japan_region
8506
+ region = xinan_region
8507
+ region = brazil_region
8508
+ region = peru_region
8509
+ region = canada_region
8510
+ region = mississippi_region
8511
+ region = mexico_region
8512
+ }
8513
+ }
8514
+
8515
+ frloc_regions_art_sg_masc_cons_du_du_dansle_02 = {
8516
+ # Ex.: LE Caucase / venir DU Caucase / la conqu阾e DU Caucase / arriver DANS LE Caucase / grand(?
8517
+ OR = {
8518
+ region = deccan_region
8519
+ region = upper_peru_region
8520
+ region = caucasia_region
8521
+ region = northeast_america_region
8522
+ region = southeast_america_region
8523
+ region = rio_grande_region
8524
+ region = north_west_pacific_region
8525
+ region = south_west_pacific_region
8526
+ region = south_east_pacific_region
8527
+ region = north_east_pacific_region
8528
+ }
8529
+ }
8530
+
8531
+ frloc_regions_art_sg_masc_vow_d_del_dansl_03 = {
8532
+ # Ex.: L'Hindoustan / venir D'Hindoustan / la conqu阾e DE L'Hindoustan / arriver DANS L'Hindoustan / grand(?
8533
+ OR = {
8534
+ region = ural_region
8535
+ region = hindusthan_region
8536
+ region = west_indian_ocean_region
8537
+ region = east_indian_ocean_region
8538
+ region = south_indian_ocean_region
8539
+ region = north_atlantic_region
8540
+ region = south_atlantic_region
8541
+ }
8542
+ }
8543
+
8544
+ frloc_regions_noart_sg_masc_de_de_en_04 = {
8545
+ # Ex.: (? Coromandel / venir DE Coromandel / la conqu阾e DE Coromandel / arriver EN Coromandel / grand(?
8546
+ OR = {
8547
+ region = coromandel_region
8548
+ }
8549
+ }
8550
+
8551
+ frloc_regions_art_pl_masc_des_des_aux_05 = {
8552
+ # Ex.: LES Pays-Bas / venir DES Pays-Bas / la conqu阾e DES Pays-Bas / arriver AUX Pays-Bas / grandS
8553
+ OR = {
8554
+ region = low_countries_region
8555
+ }
8556
+ }
8557
+
8558
+ frloc_regions_art_pl_masc_des_des_dansles_06 = {
8559
+ # Ex.: LES Balkans / venir DES Balkans / la conqu阾e DES Balkans / arriver DANS LES Balkans / grandS
8560
+ OR = {
8561
+ region = balkan_region
8562
+ region = carpathia_region
8563
+ region = great_lakes_region
8564
+ }
8565
+ }
8566
+
8567
+ frloc_regions_art_sg_fem_cons_de_dela_en_07 = {
8568
+ # Ex.: LA Scandinavie / venir DE Scandinavie / la conqu阾e DE LA Scandinavie / arriver EN Scandinavie / grandE
8569
+ OR = {
8570
+ region = france_region
8571
+ region = scandinavia_region
8572
+ region = russia_region
8573
+ region = baltic_region
8574
+ region = poland_region
8575
+ region = ruthenia_region
8576
+ region = persia_region
8577
+ region = guinea_region
8578
+ region = west_siberia_region
8579
+ region = east_siberia_region
8580
+ region = mongolia_region
8581
+ region = manchuria_region
8582
+ region = korea_region
8583
+ region = burma_region
8584
+ region = south_china_region
8585
+ region = north_china_region
8586
+ region = colombia_region
8587
+ region = malaya_region
8588
+ region = california_region
8589
+ region = cascadia_region
8590
+ region = mediterrenean_region
8591
+ }
8592
+ }
8593
+
8594
+ frloc_regions_art_sg_fem_cons_dela_dela_en_08 = {
8595
+ # Ex.: LA mer Baltique / venir DE mer Baltique / la conqu阾e DE LA mer Baltique / arriver EN mer Baltique / grandE
8596
+ OR = {
8597
+ region = baltic_sea_region
8598
+ region = caribbean_sea_region
8599
+ region = west_african_sea_region
8600
+ region = arabian_sea_region
8601
+ region = south_china_sea_region
8602
+ region = east_china_sea_region
8603
+ }
8604
+ }
8605
+
8606
+ frloc_regions_art_sg_fem_cons_dela_dela_dansla_09 = {
8607
+ # Ex.: LA Corne de l'Afrique / venir DE LA Corne de l'Afrique / la conqu阾e DE LA Corne de l'Afrique / arriver DANS LA Corne de l'Afrique / grandE
8608
+ OR = {
8609
+ region = iberia_region
8610
+ region = crimea_region
8611
+ region = horn_of_africa_region
8612
+ region = hudson_bay_region
8613
+ region = american_east_coast_region
8614
+ }
8615
+ }
8616
+
8617
+ frloc_regions_art_sg_fem_vow_d_del_en_10 = {
8618
+ # Ex.: L'Allemagne du Nord / venir D'Allemagne du Nord / la conqu阾e DE L'Allemagne du Nord / arriver EN Allemagne du Nord / grandE
8619
+ OR = {
8620
+ region = italy_region
8621
+ region = north_german_region
8622
+ region = south_german_region
8623
+ region = egypt_region
8624
+ region = anatolia_region
8625
+ region = arabia_region
8626
+ region = east_africa_region
8627
+ region = central_africa_region
8628
+ region = central_asia_region
8629
+ region = south_africa_region
8630
+ region = west_india_region
8631
+ region = australia_region
8632
+ region = indonesia_region
8633
+ region = oceanea_region
8634
+ region = indo_china_region
8635
+ region = central_america_region
8636
+ region = pacific_south_america_region
8637
+ region = atlantic_south_america_region
8638
+ }
8639
+ }
8640
+
8641
+ frloc_regions_noart_sg_fem_cons_de_de_dans_11 = {
8642
+ # Ex.: (? la Plata / venir DE la Plata / la conqu阾e DE la Plata / arriver DANS la Plata / grandE
8643
+ OR = {
8644
+ region = la_plata_region
8645
+ }
8646
+ }
8647
+
8648
+ frloc_regions_art_pl_fem_des_des_aux_12 = {
8649
+ # Ex.: (? LES Moluques / venir DES Moluques / la conqu阾e DES Moluques / arriver AUX Moluques / grandES
8650
+ OR = {
8651
+ region = moluccas_region
8652
+ }
8653
+ }
8654
+
8655
+ frloc_regions_art_pl_fem_des_des_dansles_13 = {
8656
+ # Ex.: (? LES Cara颾es / venir DES Cara颾es / la conqu阾e DES Cara颾es / arriver DANS LES Cara颾es / grandES
8657
+ OR = {
8658
+ region = british_isles_region
8659
+ region = great_plains_region
8660
+ region = carribeans_region
8661
+ }
8662
+ }
8663
+
8664
+
8665
+
8666
+ ###########################################
8667
+ ### Superregions // Sous-continents ###
8668
+ ###########################################
8669
+
8670
+ frloc_superregions_art_sg_masc_cons_du_du_au_01 = {
8671
+ # Ex.: LE Levant / venir DU Levant / la conqu阾e DU Levant / arriver AU Levant / grand(?
8672
+ OR = {
8673
+ superregion = new_world_superregion
8674
+ superregion = near_east_superregion
8675
+ superregion = west_american_sea_superregion
8676
+ superregion = north_pacific_sea_superregion
8677
+ }
8678
+ }
8679
+
8680
+ frloc_superregions_art_sg_masc_vow_d_del_en_02 = {
8681
+ # Ex.: L'Extr阭e-Orient / venir D'Extr阭e-Orient / la conqu阾e DE L'Extr阭e-Orient / arriver EN Extr阭e-Orient / grand(?
8682
+ OR = {
8683
+ superregion = far_east_superregion
8684
+ }
8685
+ }
8686
+
8687
+ frloc_superregions_art_sg_masc_vow_del_del_dansl_03 = {
8688
+ # Ex.: L'Atlantique ouest / venir DE L'Atlantique ouest / la conqu阾e DE L'Atlantique ouest / arriver DANS L'Atlantique ouest / grand(?
8689
+ OR = {
8690
+ superregion = east_american_sea_superregion
8691
+ superregion = north_european_sea_superregion
8692
+ superregion = west_african_sea_superregion
8693
+ superregion = east_african_sea_superregion
8694
+ superregion = indian_pacific_sea_superregion
8695
+ }
8696
+ }
8697
+
8698
+ frloc_superregions_art_sg_fem_cons_de_dela_en_04 = {
8699
+ # Ex.: LA Tartarie / venir DE Tartarie / la conqu阾e DE LA Tartarie / arriver EN Tartarie / grandE
8700
+ OR = {
8701
+ superregion = china_superregion
8702
+ superregion = tartary_superregion
8703
+ superregion = persia_superregion
8704
+ superregion = south_european_sea_superregion
8705
+ }
8706
+ }
8707
+
8708
+ frloc_superregions_art_sg_fem_vow_d_del_en_05 = {
8709
+ # Ex.: L'Inde / venir D'Inde / la conqu阾e DE L'Inde / arriver EN Inde / grandE
8710
+ OR = {
8711
+ superregion = india_superregion
8712
+ superregion = oceania_superregion
8713
+ superregion = europe_superregion
8714
+ superregion = eastern_europe_superregion
8715
+ superregion = africa_superregion
8716
+ superregion = southern_africa_superregion
8717
+ superregion = south_america_superregion
8718
+ superregion = north_america_superregion
8719
+ superregion = central_america_superregion
8720
+ }
8721
+ }
8722
+
8723
+ frloc_superregions_art_pl_fem_des_des_dansles_06 = {
8724
+ # Ex.: LES Indes orientales / venir DES Indes orientales / la conqu阾e DES Indes orientales / arriver DANS LES Indes orientales / grandES
8725
+ OR = {
8726
+ superregion = east_indies_superregion
8727
+ superregion = andes_superregion
8728
+ }
8729
+ }
8730
+
8731
+
8732
+
8733
+ ###########################################
8734
+ ### Superregions // Sous-continents ###
8735
+ ###########################################
8736
+
8737
+ frloc_continents_art_sg_masc_cons_01 = {
8738
+ # Ex.: LE Nouveau Monde / venir DU Nouveau Monde / la conqu阾e DU Nouveau Monde / arriver AU Nouveau Monde / grand(?
8739
+ OR = {
8740
+ continent = new_world
8741
+ }
8742
+ }
8743
+
8744
+ frloc_continents_art_sg_fem_vow_02 = {
8745
+ # Ex.: L'Europe / venir D'Europe / la conqu阾e DE L'Europe / arriver EN Europe / grand(?
8746
+ OR = {
8747
+ continent = europe
8748
+ continent = asia
8749
+ continent = africa
8750
+ continent = north_america
8751
+ continent = south_america
8752
+ continent = oceania
8753
+ }
8754
+ }
8755
+
8756
+
8757
+
8758
+
793
8759
  ###################################################
794
8760
  ### Religion Groups // Familles religieuses ###
795
8761
  ###################################################
@@ -807,9 +8773,7 @@ frloc_religion_group_cons = {
807
8773
  frloc_religion_group_vow = {
808
8774
  OR = {
809
8775
  religion_group = muslim
810
- religion_group = muslirel # La Pl閕ade
811
8776
  religion_group = eastern
812
- religion_group = easterrel # La Pl閕ade
813
8777
  }
814
8778
  }
815
8779
 
@@ -855,6 +8819,7 @@ frloc_religion_masc_vow = {
855
8819
  religion = ibadi
856
8820
  religion = animism
857
8821
  religion = inti
8822
+ religion = dreamtime
858
8823
  }
859
8824
  }
860
8825
 
@@ -904,6 +8869,7 @@ frloc_secondary_religion_masc_vow = {
904
8869
  secondary_religion = ibadi
905
8870
  secondary_religion = animism
906
8871
  secondary_religion = inti
8872
+ secondary_religion = dreamtime
907
8873
  }
908
8874
  }
909
8875
 
@@ -918,6 +8884,7 @@ frloc_secondary_religion_fem_vow = {
918
8884
  ############################################
919
8885
 
920
8886
  frloc_trade_goods_masc_sg_cons = {
8887
+ # Ex.: LE vin / DU vin / DE vin
921
8888
  OR = {
922
8889
  trade_goods = wine
923
8890
  trade_goods = fish
@@ -938,6 +8905,7 @@ frloc_trade_goods_masc_sg_cons = {
938
8905
  }
939
8906
 
940
8907
  frloc_trade_goods_fem_sg_cons = {
8908
+ # Ex. : LA laine / DE LA laine / DE laine
941
8909
  OR = {
942
8910
  trade_goods = wool
943
8911
  trade_goods = silk
@@ -945,6 +8913,7 @@ frloc_trade_goods_fem_sg_cons = {
945
8913
  }
946
8914
 
947
8915
  frloc_trade_goods_sg_vow = {
8916
+ # Ex. : L'ivoire / DE L'ivoire / D'ivoire
948
8917
  OR = {
949
8918
  trade_goods = gold
950
8919
  trade_goods = ivory
@@ -953,6 +8922,7 @@ frloc_trade_goods_sg_vow = {
953
8922
  }
954
8923
 
955
8924
  frloc_trade_goods_pl_cons = {
8925
+ # Ex. : LES c閞閍les / DES c閞閍les / DE c閞閍les
956
8926
  OR = {
957
8927
  trade_goods = tropical_wood
958
8928
  trade_goods = grain
@@ -961,10 +8931,12 @@ frloc_trade_goods_pl_cons = {
961
8931
  trade_goods = chinaware
962
8932
  trade_goods = dyes
963
8933
  trade_goods = gems
8934
+ trade_goods = cloves
964
8935
  }
965
8936
  }
966
8937
 
967
8938
  frloc_trade_goods_pl_vow = {
8939
+ # Ex. : LES esclaves / DES esclaves / D'esclaves
968
8940
  OR = {
969
8941
  trade_goods = cloth
970
8942
  trade_goods = slaves
@@ -978,50 +8950,68 @@ frloc_trade_goods_pl_vow = {
978
8950
  ### Parliaments // Parlements ###
979
8951
  #####################################
980
8952
 
981
- # Ex. : LE Grand conseil / AU Grand conseil / DU Grand conseil
8953
+ # Ex. : LE Grand conseil / AU Grand conseil / DU Grand conseil / puissant? ### Used for most cases, notably as fallback for default_parliament_name: "Parlement"
982
8954
  frloc_parliament_masc_sg_cons = {
983
- NOT = {
984
- OR = {
985
- tag = ICE # Alting
986
- tag = MOS tag = RUS culture_group = east_slavic # Douma
987
- culture_group = altaic # Kurultai
988
- tag = FRA tag = QUE # Assembl閑 nationale
989
- tag = HUN # Orsz醙gy黮閟
990
- tag = SPA culture_group = iberian # Cortes
991
- tag = NED # 蓆ats g閚閞aux
8955
+ OR = {
8956
+ NOT = { has_parliament = yes }
8957
+ AND = {
8958
+ has_parliament = yes
8959
+ NOT = {
8960
+ OR = {
8961
+ tag = ICE # Alting
8962
+ tag = IRE # Oireachtas
8963
+ tag = MOS tag = RUS culture_group = east_slavic # Douma
8964
+ culture_group = altaic # Kurultai
8965
+ tag = JAP # Di鑤e
8966
+ tag = LUX # Chambre
8967
+ tag = FRA tag = QUE # Assembl閑 nationale
8968
+ tag = HUN # Orsz醙gy黮閟
8969
+ tag = SPA culture_group = iberian # Cortes
8970
+ tag = NED # 蓆ats g閚閞aux
8971
+ }
8972
+ }
992
8973
  }
993
8974
  }
994
8975
  }
995
8976
 
996
- # Ex. : L'Alting / ?L'Alting / DE L'Alting
8977
+ # Ex. : L'Alting / ?L'Alting / DE L'Alting / puissant? frloc_parliament_masc_sg_vow = {
997
- tag = ICE # Alting
8978
+ has_parliament = yes
8979
+ OR = {
8980
+ tag = ICE # Alting
8981
+ tag = IRE # Oireachtas
8982
+ }
998
8983
  }
999
8984
 
1000
- # Ex. : LA Douma / ?LA Douma / DE LA Douma
8985
+ # Ex. : LA Douma / ?LA Douma / DE LA Douma / puissantE
1001
8986
  frloc_parliament_fem_sg_cons = {
8987
+ has_parliament = yes
1002
8988
  OR = {
1003
8989
  tag = MOS tag = RUS culture_group = east_slavic # Douma
1004
8990
  culture_group = altaic # Kurultai
8991
+ tag = JAP # Di鑤e
8992
+ tag = LUX # Chambre
1005
8993
  }
1006
8994
  }
1007
8995
 
1008
- # Ex. : L'Assembl閑 nationale / ?L'Assembl閑 nationale DE L'Assembl閑 nationale
8996
+ # Ex. : L'Assembl閑 nationale / ?L'Assembl閑 nationale / DE L'Assembl閑 nationale / puissantE
1009
8997
  frloc_parliament_fem_sg_vow = {
8998
+ has_parliament = yes
1010
8999
  OR = {
1011
9000
  tag = FRA tag = QUE # Assembl閑 nationale
1012
9001
  tag = HUN # Orsz醙gy黮閟
1013
9002
  }
1014
9003
  }
1015
9004
 
1016
- # Ex. : LES Cortes / AUX Cortes / DES Cortes
9005
+ # Ex. : LES 蓆ats g閚閞aux / AUX 蓆ats g閚閞aux / DES 蓆ats g閚閞aux / puissantS
1017
9006
  frloc_parliament_masc_pl = {
1018
- OR = {
1019
- tag = SPA culture_group = iberian # Cortes
9007
+ has_parliament = yes
1020
9008
  tag = NED # 蓆ats g閚閞aux
1021
- }
1022
9009
  }
1023
9010
 
1024
- #frloc_parliament_fem_pl = {} # CURRENTLY UNUSED
1025
-
9011
+ # Ex. : LES Cortes / AUX Cortes / DES Cortes / puissantES
9012
+ frloc_parliament_fem_pl = {
9013
+ has_parliament = yes
9014
+ tag = SPA culture_group = iberian # Cortes
9015
+ }
common/scripted_triggers/00_scripted_triggers_estates.txt CHANGED
@@ -11,17 +11,1012 @@ crown_stronger_than_estate = {
11
11
  }
12
12
 
13
13
  has_any_estates = {
14
+ custom_trigger_tooltip = {
15
+ tooltip = has_any_estates_tt
16
+ OR = {
17
+ has_estate = estate_brahmins
18
+ has_estate = estate_burghers
19
+ has_estate = estate_church
20
+ has_estate = estate_cossacks
21
+ has_estate = estate_dhimmi
22
+ has_estate = estate_jains
23
+ has_estate = estate_maratha
24
+ has_estate = estate_nobles
25
+ has_estate = estate_nomadic_tribes
26
+ has_estate = estate_rajput
27
+ has_estate = estate_vaisyas
28
+ has_estate = estate_janissaries
29
+ has_estate = estate_eunuchs
30
+ has_estate = estate_qizilbash
31
+ has_estate = estate_ghulams
32
+ }
33
+ }
34
+ }
35
+
36
+ # A trigger for the scripted effect disable_rebels_from_seize_land_for_estate
37
+ disabled_rebels_from_seized_land_for_estate = {
38
+ OR = {
39
+ has_government_attribute = seizing_land_no_rebels_from_$estate$
40
+ has_country_flag = disabled_rebels_from_seized_land_for_$estate$
41
+ }
42
+ }
43
+
44
+ has_exempt_from_seize_land_for_estate_nobles = {
45
+ OR = {
46
+ has_estate_privilege = estate_nobles_levies
47
+ has_estate_privilege = estate_nobles_golden_liberty
48
+ #Jolof's starting privileges
49
+ has_estate_privilege = estate_nobles_decentralized_tribe
50
+ has_estate_privilege = estate_nobles_tribe_unification
51
+ #Norway's starting privileges
52
+ has_estate_privilege = estate_nobles_danish_nobility
53
+ has_estate_privilege = estate_nobles_nobles_instead_of_royal_court
54
+ #England's starting privilege
55
+ has_estate_privilege = estate_nobles_english_villeinage
56
+ #Prussia's privilege
57
+ has_estate_privilege = estate_nobles_consolidated_noble_contracts
58
+ }
59
+ }
60
+ has_exempt_from_seize_land_for_estate_brahmins = {
61
+ has_estate_privilege = estate_brahmins_administrative_privileges
62
+ }
63
+ has_exempt_from_seize_land_for_estate_burghers = {
64
+ has_estate_privilege = estate_burghers_land_trade_rights
65
+ }
66
+ has_exempt_from_seize_land_for_estate_church = {
14
67
  OR = {
15
- has_estate = estate_brahmins
16
- has_estate = estate_burghers
17
- has_estate = estate_church
18
- has_estate = estate_cossacks
19
- has_estate = estate_dhimmi
20
- has_estate = estate_jains
21
- has_estate = estate_maratha
22
- has_estate = estate_nobles
23
- has_estate = estate_nomadic_tribes
24
- has_estate = estate_rajput
25
- has_estate = estate_vaisyas
68
+ has_estate_privilege = estate_church_inwards_perfection
69
+ has_estate_privilege = estate_church_administrative_privileges
70
+ #Livonian Order's starting privileges
71
+ has_estate_privilege = estate_church_lands_of_riga
72
+ has_estate_privilege = estate_church_bishopric_of_dorpat
73
+ has_estate_privilege = estate_church_bishopric_of_osel_wiek
74
+ has_estate_privilege = estate_church_bishopric_of_courland
75
+ has_estate_privilege = estate_church_bishopric_of_reval
76
+ }
77
+ }
78
+ has_exempt_from_seize_land_for_estate_cossacks = {
79
+ has_estate_privilege = estate_cossacks_establish_the_cossack_regiments
80
+ }
81
+ has_exempt_from_seize_land_for_estate_dhimmi = {
82
+ has_estate_privilege = estate_dhimmi_administrative_privileges
83
+ }
84
+ has_exempt_from_seize_land_for_estate_jains = {
85
+ has_estate_privilege = estate_jains_land_trade_rights
86
+ }
87
+ has_exempt_from_seize_land_for_estate_maratha = {
88
+ OR = {
89
+ has_estate_privilege = estate_maratha_levies
90
+ has_estate_privilege = estate_maratha_special_privilege
91
+ }
92
+ }
93
+ has_exempt_from_seize_land_for_estate_nomadic_tribes = {
94
+ #has_estate_privilege = estate_nomadic_tribes_autonomy_of_the_tribes
95
+ always = no
96
+ }
97
+ has_exempt_from_seize_land_for_estate_rajput = {
98
+ has_estate_privilege = estate_rajput_rajput_regiments
99
+ }
100
+ has_exempt_from_seize_land_for_estate_vaisyas = {
101
+ has_estate_privilege = estate_vaisyas_land_trade_rights
102
+ }
103
+ has_exempt_from_seize_land_for_estate_janissaries = {
104
+ has_estate_privilege = estate_janissary_recruited_by_merit
105
+ }
106
+ has_exempt_from_seize_land_for_estate_eunuchs = {
107
+ OR = {
108
+ has_estate_privilege = estate_eunuchs_land_rights_privilege
109
+ has_estate_privilege = estate_eunuchs_allow_personal_fortunes_privilege
110
+ has_estate_privilege = estate_eunuchs_single_whip_law_privilege
111
+ }
112
+ }
113
+ has_exempt_from_seize_land_for_estate_qizilbash = {
114
+ has_estate_privilege = estate_qizilbash_supremacy_over_the_aristocracy
115
+ }
116
+ has_exempt_from_seize_land_for_estate_ghulams = {
117
+ always = no
118
+ }
119
+
120
+ estate_has_exempt_from_seize_land_privilege = {
121
+ has_estate = $estate$
122
+ has_exempt_from_seize_land_for_$estate$ = yes
123
+ }
124
+
125
+ estate_not_has_exempt_from_seize_land_privilege = {
126
+ NOT = { has_exempt_from_seize_land_for_$estate$ = yes }
127
+ }
128
+
129
+ #Country scope
130
+ can_swap_out_of_estate_granting_reform = {
131
+ OR = {
132
+ NOT = { has_estate = $estate$ }
133
+ NOT = {
134
+ num_of_estate_privileges = {
135
+ estate = $estate$
136
+ value = 1
137
+ }
138
+ }
139
+ }
140
+ #custom_trigger_tooltip = {
141
+ # tooltip = did_not_sell_crownland_tt
142
+ # NOT = { has_country_flag = recent_land_distribution }
143
+ #}
144
+ }
145
+
146
+ #Country scope
147
+ #Bugged for whatever reason...
148
+ #any_estate_influence = {
149
+ # OR = {
150
+ # if = { limit = { has_estate = estate_church } estate_influence = { estate = estate_church influence = $influence$ } }
151
+ # if = { limit = { has_estate = estate_brahmins } estate_influence = { estate = estate_brahmins influence = $influence$ } }
152
+ # if = { limit = { has_estate = estate_burghers } estate_influence = { estate = estate_burghers influence = $influence$ } }
153
+ # if = { limit = { has_estate = estate_cossacks } estate_influence = { estate = estate_cossacks influence = $influence$ } }
154
+ # if = { limit = { has_estate = estate_dhimmi } estate_influence = { estate = estate_dhimmi influence = $influence$ } }
155
+ # if = { limit = { has_estate = estate_jains } estate_influence = { estate = estate_jains influence = $influence$ } }
156
+ # if = { limit = { has_estate = estate_maratha } estate_influence = { estate = estate_maratha influence = $influence$ } }
157
+ # if = { limit = { has_estate = estate_nobles } estate_influence = { estate = estate_nobles influence = $influence$ } }
158
+ # if = { limit = { has_estate = estate_nomadic_tribes } estate_influence = { estate = estate_nomadic_tribes influence = $influence$ } }
159
+ # if = { limit = { has_estate = estate_rajput } estate_influence = { estate = estate_rajput influence = $influence$ } }
160
+ # if = { limit = { has_estate = estate_vaisyas } estate_influence = { estate = estate_vaisyas influence = $influence$ } }
161
+ # if = { limit = { has_estate = estate_janissaries } estate_influence = { estate = estate_janissaries influence = $influence$ } }
162
+ # if = { limit = { has_estate = estate_eunuchs } estate_influence = { estate = estate_eunuchs influence = $influence$ } }
163
+ # if = { limit = { has_estate = estate_qizilbash } estate_influence = { estate = estate_qizilbash influence = $influence$ } }
164
+ # if = { limit = { has_estate = estate_ghulams } estate_influence = { estate = estate_ghulams influence = $influence$ } }
165
+ # }
166
+ #}
167
+ any_estate_loyalty = {
168
+ OR = {
169
+ if = { limit = { has_estate = estate_church } estate_loyalty = { estate = estate_church loyalty = $loyalty$ } }
170
+ if = { limit = { has_estate = estate_brahmins } estate_loyalty = { estate = estate_brahmins loyalty = $loyalty$ } }
171
+ if = { limit = { has_estate = estate_burghers } estate_loyalty = { estate = estate_burghers loyalty = $loyalty$ } }
172
+ if = { limit = { has_estate = estate_cossacks } estate_loyalty = { estate = estate_cossacks loyalty = $loyalty$ } }
173
+ if = { limit = { has_estate = estate_dhimmi } estate_loyalty = { estate = estate_dhimmi loyalty = $loyalty$ } }
174
+ if = { limit = { has_estate = estate_jains } estate_loyalty = { estate = estate_jains loyalty = $loyalty$ } }
175
+ if = { limit = { has_estate = estate_maratha } estate_loyalty = { estate = estate_maratha loyalty = $loyalty$ } }
176
+ if = { limit = { has_estate = estate_nobles } estate_loyalty = { estate = estate_nobles loyalty = $loyalty$ } }
177
+ if = { limit = { has_estate = estate_nomadic_tribes } estate_loyalty = { estate = estate_nomadic_tribes loyalty = $loyalty$ } }
178
+ if = { limit = { has_estate = estate_rajput } estate_loyalty = { estate = estate_rajput loyalty = $loyalty$ } }
179
+ if = { limit = { has_estate = estate_vaisyas } estate_loyalty = { estate = estate_vaisyas loyalty = $loyalty$ } }
180
+ if = { limit = { has_estate = estate_janissaries } estate_loyalty = { estate = estate_janissaries loyalty = $loyalty$ } }
181
+ if = { limit = { has_estate = estate_eunuchs } estate_loyalty = { estate = estate_eunuchs loyalty = $loyalty$ } }
182
+ if = { limit = { has_estate = estate_qizilbash } estate_loyalty = { estate = estate_qizilbash loyalty = $loyalty$ } }
183
+ if = { limit = { has_estate = estate_ghulams } estate_loyalty = { estate = estate_ghulams loyalty = $loyalty$ } }
184
+ }
185
+ }
186
+
187
+ # Supports the following paramters
188
+ ###########################################
189
+ # MAKE_GENEROUS_DONATION_BRAHMINS
190
+ # SEEK_SUPPORT_OF_BRAHMINS
191
+ # RECRUIT_MINISTER_BRAHMINS
192
+ # RECRUIT_INQUISITOR_BRAHMINS
193
+ # DEMAND_SUPPORT_BRAHMINS
194
+ # SEEK_BRAHMIN_LEGITIMACY_BRAHMINS
195
+ # ASK_FOR_CONTRIBUTION_BURGHERS
196
+ # DEMAND_SUPPORT_BURGHERS
197
+ # GRANT_MONOPOLY_CHARTER_BURGHERS
198
+ # RECRUIT_MINISTER_BURGHERS
199
+ # GRANT_ADMIRALSHIP_BURGHERS
200
+ # GRANT_NEW_WORLD_CHARTER_BURGHERS
201
+ # COMISSION_MERCHANT_SHIPS_FOR_WAR_BURGHERS
202
+ # MAKE_GENEROUS_DONATION_CHURCH
203
+ # RECRUIT_MINISTER_CHURCH
204
+ # RECRUIT_INQUISITOR_CHURCH
205
+ # RELIGIOUS_DELEGATION_CHURCH
206
+ # DEMAND_SUPPORT_CHURCH
207
+ # SEEK_SUPPORT_OF_CLERGY_CHURCH
208
+ # NEW_WORLD_MISSION_CHURCH
209
+ # EXPAND_COSSACK_REGISTRY_COSSACKS
210
+ # RAISE_COSSACK_HOST_COSSACKS
211
+ # COSSACK_CONQUISTADOR_COSSACKS
212
+ # RECRUIT_MINISTER_COSSACKS
213
+ # CONSCRIPT_COSSACK_ELITE_COSSACKS
214
+ # SUPPLY_ARMS_COSSACKS
215
+ # PERMIT_SELF_GOVERNANCE_COSSACKS
216
+ # RECRUIT_MINISTER_DHIMMI
217
+ # LIGHTEN_DHIMMI_TAX_BURDEN_DHIMMI
218
+ # PROMOTE_DHIMMI_NOBLES_DHIMMI
219
+ # RECRUIT_FROM_THE_DHIMMI_DHIMMI
220
+ # DEMAND_CONTRIBUTION_DHIMMI
221
+ # PROCURE_LOANS_JAINS
222
+ # INVESTIGATE_CORRUPTION_JAINS
223
+ # PATRONIZE_JAIN_FAMILIES_JAINS
224
+ # COMMISSION_JAIN_SCRIPTURES_JAINS
225
+ # DEMAND_SUPPORT_JAINS
226
+ # PROMOTE_MARATHA_NOBILITY_MARATHA
227
+ # RECRUIT_MINISTER_MARATHA
228
+ # RECRUIT_MARATHI_TROOPS_MARATHA
229
+ # DEMAND_SUPPORT_MARATHA
230
+ # CALL_DIET_NOBLES
231
+ # GRANT_GENERALSHIP_NOBLES
232
+ # RECRUIT_CONQUISTADOR_ESTATES_NOBLES
233
+ # DEMAND_SUPPORT_NOBLES
234
+ # RECRUIT_MINISTER_NOBLES
235
+ # DEMAND_MORE_TROOPS_NOBLES
236
+ # SUPPORT_TRIBES_NOMADIC_TRIBES
237
+ # CONTRIBUTE_WARRIORS_NOMADIC_TRIBES
238
+ # RAISE_HOST_NOMADIC_TRIBES
239
+ # RECRUIT_MINISTER_NOMADIC_TRIBES
240
+ # RECRUIT_RAJPUT_GENERAL_RAJPUT
241
+ # LOOK_UP_PURBIAS_RAJPUT
242
+ # DEMAND_SUPPORT_RAJPUT
243
+ # EXEMPT_FROM_JIZYA_RAJPUT
244
+ # PROMOTE_RAJPUT_NOBILITY_RAJPUT
245
+ # ASK_FOR_CONTRIBUTION_VAISYAS
246
+ # DEMAND_SUPPORT_VAISYAS
247
+ # SEEK_GUILD_SUPPORT_VAISYAS
248
+ # RECRUIT_MINISTER_VAISYAS
249
+ # COMISSION_MERCHANT_SHIPS_FOR_WAR_VAISYAS
250
+ has_enabled_estate_action = {
251
+ has_country_flag = enable_estate_action_$estate_action$
252
+ }
253
+ has_enabled_estate_action_with_tooltip = {
254
+ custom_trigger_tooltip = {
255
+ tooltip = has_enabled_estate_action_$estate_action$_tt
256
+ has_country_flag = enable_estate_action_$estate_action$
26
257
  }
258
+ }
259
+
260
+ has_any_estate_disaster_active = {
261
+ custom_trigger_tooltip = {
262
+ tooltip = has_any_estate_disaster_active_tt
263
+ has_country_flag = has_estate_disaster_flag
264
+ }
265
+ }
266
+
267
+ has_not_any_estate_disaster_active = {
268
+ custom_trigger_tooltip = {
269
+ tooltip = has_not_any_estate_disaster_active_tt
270
+ NOT = { has_country_flag = has_estate_disaster_flag }
271
+ }
272
+ }
273
+
274
+ has_not_own_estate_disaster_active = {
275
+ NOT = { has_country_flag = $estate$_in_power }
276
+ }
277
+
278
+ has_absolutism_reduction_for_estate_privileges = {
279
+ OR = {
280
+ has_idea = respected_authority
281
+ has_country_flag = has_halved_absolutism_reduction
282
+ has_government_attribute = has_halved_absolutism_reduction_gov
283
+ }
284
+ }
285
+
286
+ # Supports the following parameters
287
+ ###########################################
288
+ # estate_nobles
289
+ # estate_brahmins
290
+ # estate_burghers
291
+ # estate_church
292
+ # estate_cossacks
293
+ # estate_dhimmi
294
+ # estate_jains
295
+ # estate_maratha
296
+ # estate_nomadic_tribes
297
+ # estate_rajput
298
+ # estate_vaisyas
299
+ # estate_janissaries
300
+ # estate_eunuchs
301
+ # estate_qizilbash
302
+ # estate_ghulams
303
+ has_estate_agenda_auto_completion = {
304
+ hidden_trigger = {
305
+ OR = {
306
+ has_country_flag = auto_complete_estate_agenda_$estate$
307
+ has_country_flag = auto_complete_estate_agenda_all
308
+ }
309
+ }
310
+ }
311
+
312
+ # Supports the following paramters
313
+ ###########################################
314
+ # DAYS:
315
+ # 365
316
+ # 1825
317
+ # 3650
318
+ # 5475
319
+ # 7300
320
+ # 9125
321
+ # 10950
322
+ # 12775
323
+ # 14600
324
+ # 16425
325
+ # 18250
326
+ # 27375
327
+ # 36500
328
+ ###########################################
329
+ # ESTATE ACTIONS:
330
+ estate_action_off_cooldown = {
331
+ custom_trigger_tooltip = {
332
+ tooltip = CAN_USE_ESTATE_ACTION_EVERY_$days$
333
+ OR = {
334
+ NOT = { has_country_flag = $estate_action$_flag }
335
+ had_country_flag = {
336
+ flag = $estate_action$_flag
337
+ days = $days$
338
+ }
339
+ }
340
+ }
341
+ }
342
+
343
+ ###########################################
344
+ # DAYS:
345
+ # 3650
346
+ # 10950
347
+ # Other days will be added when needed.
348
+ ###########################################
349
+ estate_action_off_shared_cooldown = {
350
+ custom_trigger_tooltip = {
351
+ tooltip = CAN_USE_SHARED_ESTATE_ACTION_EVERY_$days$
352
+ OR = {
353
+ NOT = { has_country_flag = $estate_action$_flag }
354
+ had_country_flag = {
355
+ flag = $estate_action$_flag
356
+ days = $days$
357
+ }
358
+ }
359
+ }
360
+ }
361
+
362
+ has_estate_agenda_of_estate_nobles = {
363
+ OR = {
364
+ has_active_estate_agenda = estate_nobles_develop_x
365
+ has_active_estate_agenda = estate_nobles_build_army_building_in_y
366
+ has_active_estate_agenda = estate_nobles_build_fort_building_in_y
367
+ has_active_estate_agenda = estate_nobles_build_university_in_y
368
+ has_active_estate_agenda = estate_nobles_build_manufactory_in_y
369
+ has_active_estate_agenda = estate_nobles_get_allies
370
+ has_active_estate_agenda = estate_nobles_befriend_rival_of_rival
371
+ has_active_estate_agenda = estate_nobles_restore_legitimacy
372
+ has_active_estate_agenda = estate_nobles_relations_with_X
373
+ has_active_estate_agenda = estate_nobles_break_coalition
374
+ has_active_estate_agenda = estate_nobles_condottieri_rivals
375
+ has_active_estate_agenda = estate_nobles_support_independence
376
+ has_active_estate_agenda = estate_nobles_retake_core
377
+ has_active_estate_agenda = estate_nobles_crush_revolts
378
+ has_active_estate_agenda = estate_nobles_regain_liberty
379
+ has_active_estate_agenda = estate_nobles_convert_province_culture
380
+ has_active_estate_agenda = estate_nobles_protect_our_culture
381
+ has_active_estate_agenda = estate_nobles_vassalise_vulnerable_country
382
+ has_active_estate_agenda = estate_nobles_expand_into_x
383
+ has_active_estate_agenda = estate_nobles_complete_conquest_of_x
384
+ has_active_estate_agenda = estate_nobles_annex_subject
385
+ has_active_estate_agenda = estate_nobles_build_an_army
386
+ has_active_estate_agenda = estate_nobles_bigger_army_than_rival
387
+ has_active_estate_agenda = estate_nobles_build_up_manpower_reserves
388
+ has_active_estate_agenda = estate_nobles_recover_abysmal_prestige
389
+ has_active_estate_agenda = estate_nobles_improve_prestige
390
+ has_active_estate_agenda = estate_nobles_hire_advisor
391
+ has_active_estate_agenda = estate_nobles_fire_advisor
392
+ }
393
+ }
394
+ has_estate_agenda_of_estate_brahmins = {
395
+ OR = {
396
+ has_active_estate_agenda = estate_brahmins_build_temple_in_y
397
+ has_active_estate_agenda = estate_brahmins_build_manufactory_in_y
398
+ has_active_estate_agenda = estate_brahmins_build_university_in_y
399
+ has_active_estate_agenda = estate_brahmins_develop_x
400
+ has_active_estate_agenda = estate_brahmins_convert_province_x
401
+ has_active_estate_agenda = estate_brahmins_reduce_war_exhaustion
402
+ has_active_estate_agenda = estate_brahmins_recover_stability
403
+ has_active_estate_agenda = estate_brahmins_increase_stability
404
+ has_active_estate_agenda = estate_brahmins_reduce_overextension
405
+ has_active_estate_agenda = estate_brahmins_restore_devotion
406
+ has_active_estate_agenda = estate_brahmins_crush_religious_revolts
407
+ has_active_estate_agenda = estate_brahmins_get_allies
408
+ has_active_estate_agenda = estate_brahmins_befriend_rival_of_rival
409
+ has_active_estate_agenda = estate_brahmins_relations_with_X
410
+ has_active_estate_agenda = estate_brahmins_break_coalition
411
+ has_active_estate_agenda = estate_brahmins_protect_brethren
412
+ has_active_estate_agenda = estate_brahmins_restore_legitimacy
413
+ has_active_estate_agenda = estate_brahmins_stop_converting_province_x
414
+ has_active_estate_agenda = estate_brahmins_hire_advisor
415
+ has_active_estate_agenda = estate_brahmins_fire_advisor
416
+ }
417
+ }
418
+ has_estate_agenda_of_estate_burghers = {
419
+ OR = {
420
+ has_active_estate_agenda = estate_burghers_develop_x
421
+ has_active_estate_agenda = estate_burghers_build_trade_building_in_y
422
+ has_active_estate_agenda = estate_burghers_build_port_building_in_y
423
+ has_active_estate_agenda = estate_burghers_build_production_building_in_y
424
+ has_active_estate_agenda = estate_burghers_build_university_in_y
425
+ has_active_estate_agenda = estate_burghers_build_manufactory_in_y
426
+ has_active_estate_agenda = estate_burghers_pay_off_loans
427
+ has_active_estate_agenda = estate_burghers_restore_republican_tradition
428
+ has_active_estate_agenda = estate_burghers_restore_currency
429
+ has_active_estate_agenda = estate_burghers_recovery_from_hyperinflation
430
+ has_active_estate_agenda = estate_burghers_increase_trade_power_in_X
431
+ has_active_estate_agenda = estate_burghers_access_sea
432
+ has_active_estate_agenda = estate_burghers_build_a_fleet
433
+ has_active_estate_agenda = estate_burghers_bigger_fleet_than_rival
434
+ has_active_estate_agenda = estate_burghers_improve_dip_rep
435
+ has_active_estate_agenda = estate_burghers_get_cash
436
+ has_active_estate_agenda = estate_burghers_discover_X_in_america
437
+ has_active_estate_agenda = estate_burghers_colonise_X
438
+ has_active_estate_agenda = estate_burghers_colonise_more_X
439
+ has_active_estate_agenda = estate_burghers_colonial_nation
440
+ has_active_estate_agenda = estate_burghers_expand_trade_company
441
+ has_active_estate_agenda = estate_burghers_trade_post_in_india
442
+ has_active_estate_agenda = estate_burghers_trade_post_in_malacca
443
+ has_active_estate_agenda = estate_burghers_trade_post_in_china
444
+ has_active_estate_agenda = estate_burghers_silk_trade
445
+ has_active_estate_agenda = estate_burghers_spice_trade
446
+ has_active_estate_agenda = estate_burghers_tea_trade
447
+ has_active_estate_agenda = estate_burghers_reduce_corruption
448
+ has_active_estate_agenda = estate_burghers_protect_against_piracy
449
+ has_active_estate_agenda = estate_burghers_hire_advisor
450
+ has_active_estate_agenda = estate_burghers_fire_advisor
451
+ }
452
+ }
453
+ has_estate_agenda_of_estate_church = {
454
+ OR = {
455
+ has_active_estate_agenda = estate_church_develop_x
456
+ has_active_estate_agenda = estate_church_build_temple_in_y
457
+ has_active_estate_agenda = estate_church_build_university_in_y
458
+ has_active_estate_agenda = estate_church_build_manufactory_in_y
459
+ has_active_estate_agenda = estate_church_convert_province_x
460
+ has_active_estate_agenda = estate_church_reduce_war_exhaustion
461
+ has_active_estate_agenda = estate_church_recover_stability
462
+ has_active_estate_agenda = estate_church_increase_stability
463
+ has_active_estate_agenda = estate_church_reduce_overextension
464
+ has_active_estate_agenda = estate_church_restore_devotion
465
+ has_active_estate_agenda = estate_church_root_out_heresy
466
+ has_active_estate_agenda = estate_church_relations_with_pope
467
+ has_active_estate_agenda = estate_church_restore_the_holy_see
468
+ has_active_estate_agenda = estate_church_crush_religious_revolts
469
+ has_active_estate_agenda = estate_church_protect_brethren
470
+ has_active_estate_agenda = estate_church_propagate_religion
471
+ has_active_estate_agenda = estate_church_relations_with_dotf
472
+ has_active_estate_agenda = estate_church_hire_advisor
473
+ has_active_estate_agenda = estate_church_fire_advisor
474
+ }
475
+ }
476
+ has_estate_agenda_of_estate_cossacks = {
477
+ OR = {
478
+ has_active_estate_agenda = estate_cossacks_develop_x
479
+ has_active_estate_agenda = estate_cossacks_three_privileges
480
+ has_active_estate_agenda = estate_cossacks_reply_of_the_zaporozhian
481
+ has_active_estate_agenda = estate_cossacks_expand_into_x
482
+ has_active_estate_agenda = estate_cossacks_complete_conquest_of_x
483
+ has_active_estate_agenda = estate_cossacks_colonise_X
484
+ has_active_estate_agenda = estate_cossacks_go_privateering
485
+ has_active_estate_agenda = estate_cossacks_go_privateering_2
486
+ has_active_estate_agenda = estate_cossacks_despoil_x
487
+ has_active_estate_agenda = estate_cossacks_recruit_more_cossacks
488
+ has_active_estate_agenda = estate_cossacks_hire_advisor
489
+ has_active_estate_agenda = estate_cossacks_fire_advisor
490
+ }
491
+ }
492
+ has_estate_agenda_of_estate_dhimmi = {
493
+ OR = {
494
+ has_active_estate_agenda = estate_dhimmi_develop_x
495
+ has_active_estate_agenda = estate_dhimmi_build_temple_in_y
496
+ has_active_estate_agenda = estate_dhimmi_build_university_in_y
497
+ has_active_estate_agenda = estate_dhimmi_stop_converting_province_x
498
+ has_active_estate_agenda = estate_dhimmi_increase_autonomy_in_province_x
499
+ has_active_estate_agenda = estate_dhimmi_three_privileges
500
+ has_active_estate_agenda = estate_dhimmi_relations_with_X
501
+ has_active_estate_agenda = estate_dhimmi_hire_advisor
502
+ has_active_estate_agenda = estate_dhimmi_fire_advisor
503
+ }
504
+ }
505
+ has_estate_agenda_of_estate_jains = {
506
+ OR = {
507
+ has_active_estate_agenda = estate_jains_build_trade_building_in_y
508
+ has_active_estate_agenda = estate_jains_build_port_building_in_y
509
+ has_active_estate_agenda = estate_jains_build_production_building_in_y
510
+ has_active_estate_agenda = estate_jains_build_manufactory_in_y
511
+ has_active_estate_agenda = estate_jains_build_university_in_y
512
+ has_active_estate_agenda = estate_jains_pay_off_loans
513
+ has_active_estate_agenda = estate_jains_restore_republican_tradition
514
+ has_active_estate_agenda = estate_jains_restore_currency
515
+ has_active_estate_agenda = estate_jains_recovery_from_hyperinflation
516
+ has_active_estate_agenda = estate_jains_increase_trade_power_in_X
517
+ has_active_estate_agenda = estate_jains_access_sea
518
+ has_active_estate_agenda = estate_jains_build_a_fleet
519
+ has_active_estate_agenda = estate_jains_bigger_fleet_than_rival
520
+ has_active_estate_agenda = estate_jains_improve_dip_rep
521
+ has_active_estate_agenda = estate_jains_get_cash
522
+ has_active_estate_agenda = estate_jains_develop_x
523
+ has_active_estate_agenda = estate_jains_reduce_corruption
524
+ has_active_estate_agenda = estate_jains_stop_converting_province_x
525
+ has_active_estate_agenda = estate_jains_three_privileges
526
+ has_active_estate_agenda = estate_jains_protect_against_piracy
527
+ has_active_estate_agenda = estate_jains_hire_advisor
528
+ has_active_estate_agenda = estate_jains_fire_advisor
529
+ }
530
+ }
531
+ has_estate_agenda_of_estate_maratha = {
532
+ OR = {
533
+ has_active_estate_agenda = estate_maratha_build_army_building_in_y
534
+ has_active_estate_agenda = estate_maratha_build_fort_building_in_y
535
+ has_active_estate_agenda = estate_maratha_build_manufactory_in_y
536
+ has_active_estate_agenda = estate_maratha_build_university_in_y
537
+ has_active_estate_agenda = estate_maratha_condottieri_rivals
538
+ has_active_estate_agenda = estate_maratha_support_independence
539
+ has_active_estate_agenda = estate_maratha_retake_core
540
+ has_active_estate_agenda = estate_maratha_crush_revolts
541
+ has_active_estate_agenda = estate_maratha_regain_liberty
542
+ has_active_estate_agenda = estate_maratha_convert_province_culture
543
+ has_active_estate_agenda = estate_maratha_protect_our_culture
544
+ has_active_estate_agenda = estate_maratha_vassalise_vulnerable_country
545
+ has_active_estate_agenda = estate_maratha_expand_into_x
546
+ has_active_estate_agenda = estate_maratha_complete_conquest_of_x
547
+ has_active_estate_agenda = estate_maratha_annex_subject
548
+ has_active_estate_agenda = estate_maratha_build_an_army
549
+ has_active_estate_agenda = estate_maratha_bigger_army_than_rival
550
+ has_active_estate_agenda = estate_maratha_build_up_manpower_reserves
551
+ has_active_estate_agenda = estate_maratha_recover_abysmal_prestige
552
+ has_active_estate_agenda = estate_maratha_improve_prestige
553
+ has_active_estate_agenda = estate_maratha_develop_x
554
+ has_active_estate_agenda = estate_maratha_hire_advisor
555
+ has_active_estate_agenda = estate_maratha_fire_advisor
556
+ }
557
+ }
558
+ has_estate_agenda_of_estate_nomadic_tribes = {
559
+ OR = {
560
+ has_active_estate_agenda = estate_nomadic_tribes_raze_a_province
561
+ has_active_estate_agenda = estate_nomadic_tribes_develop_x
562
+ has_active_estate_agenda = estate_nomadic_tribes_restore_horde_unity
563
+ has_active_estate_agenda = estate_nomadic_tribes_befriend_rival_of_rival
564
+ has_active_estate_agenda = estate_nomadic_tribes_relations_with_X
565
+ has_active_estate_agenda = estate_nomadic_tribes_retake_core
566
+ has_active_estate_agenda = estate_nomadic_tribes_crush_revolts
567
+ has_active_estate_agenda = estate_nomadic_tribes_regain_liberty
568
+ has_active_estate_agenda = estate_nomadic_tribes_convert_province_culture
569
+ has_active_estate_agenda = estate_nomadic_tribes_protect_our_culture
570
+ has_active_estate_agenda = estate_nomadic_tribes_vassalise_vulnerable_country
571
+ has_active_estate_agenda = estate_nomadic_tribes_expand_into_x
572
+ has_active_estate_agenda = estate_nomadic_tribes_complete_conquest_of_x
573
+ has_active_estate_agenda = estate_nomadic_tribes_annex_subject
574
+ has_active_estate_agenda = estate_nomadic_tribes_build_an_army
575
+ has_active_estate_agenda = estate_nomadic_tribes_bigger_army_than_rival
576
+ has_active_estate_agenda = estate_nomadic_tribes_build_up_manpower_reserves
577
+ has_active_estate_agenda = estate_nomadic_tribes_three_privileges
578
+ has_active_estate_agenda = estate_nomadic_tribes_recover_stability
579
+ has_active_estate_agenda = estate_nomadic_tribes_increase_stability
580
+ has_active_estate_agenda = estate_nomadic_tribes_despoil_x
581
+ has_active_estate_agenda = estate_nomadic_tribes_hire_advisor
582
+ has_active_estate_agenda = estate_nomadic_tribes_fire_advisor
583
+ }
584
+ }
585
+ has_estate_agenda_of_estate_rajput = {
586
+ OR = {
587
+ has_active_estate_agenda = estate_rajput_build_army_building_in_y
588
+ has_active_estate_agenda = estate_rajput_build_fort_building_in_y
589
+ has_active_estate_agenda = estate_rajput_build_manufactory_in_y
590
+ has_active_estate_agenda = estate_rajput_build_university_in_y
591
+ has_active_estate_agenda = estate_rajput_develop_x
592
+ has_active_estate_agenda = estate_rajput_condottieri_rivals
593
+ has_active_estate_agenda = estate_rajput_support_independence
594
+ has_active_estate_agenda = estate_rajput_retake_core
595
+ has_active_estate_agenda = estate_rajput_crush_revolts
596
+ has_active_estate_agenda = estate_rajput_regain_liberty
597
+ has_active_estate_agenda = estate_rajput_convert_province_culture
598
+ has_active_estate_agenda = estate_rajput_protect_our_culture
599
+ has_active_estate_agenda = estate_rajput_vassalise_vulnerable_country
600
+ has_active_estate_agenda = estate_rajput_expand_into_x
601
+ has_active_estate_agenda = estate_rajput_complete_conquest_of_x
602
+ has_active_estate_agenda = estate_rajput_annex_subject
603
+ has_active_estate_agenda = estate_rajput_build_an_army
604
+ has_active_estate_agenda = estate_rajput_bigger_army_than_rival
605
+ has_active_estate_agenda = estate_rajput_build_up_manpower_reserves
606
+ has_active_estate_agenda = estate_rajput_recover_abysmal_prestige
607
+ has_active_estate_agenda = estate_rajput_improve_prestige
608
+ has_active_estate_agenda = estate_rajput_hire_advisor
609
+ has_active_estate_agenda = estate_rajput_fire_advisor
610
+ }
611
+ }
612
+ has_estate_agenda_of_estate_vaisyas = {
613
+ OR = {
614
+ has_active_estate_agenda = estate_vaisyas_build_trade_building_in_y
615
+ has_active_estate_agenda = estate_vaisyas_build_port_building_in_y
616
+ has_active_estate_agenda = estate_vaisyas_build_production_building_in_y
617
+ has_active_estate_agenda = estate_vaisyas_build_manufactory_in_y
618
+ has_active_estate_agenda = estate_vaisyas_build_university_in_y
619
+ has_active_estate_agenda = estate_vaisyas_pay_off_loans
620
+ has_active_estate_agenda = estate_vaisyas_restore_republican_tradition
621
+ has_active_estate_agenda = estate_vaisyas_restore_currency
622
+ has_active_estate_agenda = estate_vaisyas_recovery_from_hyperinflation
623
+ has_active_estate_agenda = estate_vaisyas_increase_trade_power_in_X
624
+ has_active_estate_agenda = estate_vaisyas_access_sea
625
+ has_active_estate_agenda = estate_vaisyas_build_a_fleet
626
+ has_active_estate_agenda = estate_vaisyas_bigger_fleet_than_rival
627
+ has_active_estate_agenda = estate_vaisyas_improve_dip_rep
628
+ has_active_estate_agenda = estate_vaisyas_get_cash
629
+ has_active_estate_agenda = estate_vaisyas_discover_X_in_america
630
+ has_active_estate_agenda = estate_vaisyas_colonise_X
631
+ has_active_estate_agenda = estate_vaisyas_colonise_more_X
632
+ has_active_estate_agenda = estate_vaisyas_colonial_nation
633
+ has_active_estate_agenda = estate_vaisyas_develop_x
634
+ has_active_estate_agenda = estate_vaisyas_reduce_corruption
635
+ has_active_estate_agenda = estate_vaisyas_protect_against_piracy
636
+ has_active_estate_agenda = estate_vaisyas_hire_advisor
637
+ has_active_estate_agenda = estate_vaisyas_fire_advisor
638
+ }
639
+ }
640
+ has_estate_agenda_of_estate_janissaries = {
641
+ OR = {
642
+ has_active_estate_agenda = estate_janissaries_hire_advisor
643
+ has_active_estate_agenda = estate_janissaries_fire_advisor
644
+ has_active_estate_agenda = estate_janissaries_three_privileges
645
+ has_active_estate_agenda = estate_janissaries_reduce_war_exhaustion
646
+ has_active_estate_agenda = estate_janissaries_increase_monthly_military_power
647
+ has_active_estate_agenda = estate_janissaries_retake_core
648
+ has_active_estate_agenda = estate_janissaries_support_independence
649
+ has_active_estate_agenda = estate_janissaries_gain_corruption
650
+ has_active_estate_agenda = estate_janissaries_stop_converting_province_x
651
+ has_active_estate_agenda = estate_janissaries_build_an_army
652
+ has_active_estate_agenda = estate_janissaries_recruit_janissaries
653
+ has_active_estate_agenda = estate_janissaries_humiliate_rival
654
+ has_active_estate_agenda = estate_janissaries_build_army_building_in_y
655
+ has_active_estate_agenda = estate_janissaries_build_soldier_household
656
+ has_active_estate_agenda = estate_janissaries_crush_revolts
657
+ has_active_estate_agenda = estate_janissaries_expand_into_x
658
+ has_active_estate_agenda = estate_janissaries_condottieri_rivals
659
+ has_active_estate_agenda = estate_janissaries_bigger_army_than_rival
660
+ has_active_estate_agenda = estate_janissaries_build_up_manpower_reserves
661
+ has_active_estate_agenda = estate_janissaries_develop_heathen_x
662
+ has_active_estate_agenda = estate_janissaries_build_trade_building_in_y
663
+ has_active_estate_agenda = estate_janissaries_increase_trade_power_in_X
664
+ has_active_estate_agenda = estate_janissaries_restore_currency
665
+ has_active_estate_agenda = estate_janissaries_get_cash
666
+ has_active_estate_agenda = estate_janissaries_build_university_in_y
667
+ has_active_estate_agenda = estate_janissaries_build_manufactory_in_y
668
+ has_active_estate_agenda = estate_janissaries_build_production_building_in_y
669
+ has_active_estate_agenda = estate_janissaries_gain_mercantilism
670
+ }
671
+ }
672
+ has_estate_agenda_of_estate_eunuchs = {
673
+ OR = {
674
+ has_active_estate_agenda = estate_eunuchs_develop_x_agenda
675
+ has_active_estate_agenda = estate_eunuchs_gather_x_gov_reform_agenda
676
+ has_active_estate_agenda = estate_eunuchs_have_x_decree_agenda
677
+ has_active_estate_agenda = estate_eunuchs_monthly_adm_agenda
678
+ has_active_estate_agenda = estate_eunuchs_recover_meritocracy_agenda
679
+ has_active_estate_agenda = estate_eunuchs_improve_imperial_mandate_agenda
680
+ has_active_estate_agenda = estate_eunuchs_hire_advisor_agenda
681
+ has_active_estate_agenda = estate_eunuchs_fire_advisor_agenda
682
+ has_active_estate_agenda = estate_eunuchs_harmonization_agenda
683
+ has_active_estate_agenda = estate_eunuchs_four_privileges_agenda
684
+ has_active_estate_agenda = estate_eunuchs_subject_gifts_agenda
685
+ has_active_estate_agenda = estate_eunuchs_forbidden_city_agenda
686
+ has_active_estate_agenda = estate_eunuchs_porcelain_tower_agenda
687
+ has_active_estate_agenda = estate_eunuchs_subsidize_subjects_agenda
688
+ }
689
+ }
690
+ has_estate_agenda_of_estate_qizilbash = {
691
+ OR = {
692
+ has_active_estate_agenda = estate_qizilbash_hire_advisor
693
+ has_active_estate_agenda = estate_qizilbash_fire_advisor
694
+ has_active_estate_agenda = estate_qizilbash_three_privileges
695
+ has_active_estate_agenda = estate_qizilbash_increase_monthly_military_power
696
+ has_active_estate_agenda = estate_qizilbash_retake_core
697
+ has_active_estate_agenda = estate_qizilbash_recruit_more_qizilbash
698
+ has_active_estate_agenda = estate_qizilbash_humiliate_rival
699
+ has_active_estate_agenda = estate_qizilbash_build_army_building_in_y
700
+ has_active_estate_agenda = estate_qizilbash_build_soldier_household
701
+ has_active_estate_agenda = estate_qizilbash_crush_revolts
702
+ has_active_estate_agenda = estate_qizilbash_expand_into_x
703
+ has_active_estate_agenda = estate_qizilbash_bigger_army_than_rival
704
+ has_active_estate_agenda = estate_qizilbash_protect_our_culture
705
+ has_active_estate_agenda = estate_qizilbash_despoil_x
706
+ has_active_estate_agenda = estate_qizilbash_develop_x
707
+ has_active_estate_agenda = estate_qizilbash_convert_province_x
708
+ has_active_estate_agenda = estate_qizilbash_establish_safavid_order
709
+ has_active_estate_agenda = estate_qizilbash_defeat_large_army
710
+ has_active_estate_agenda = estate_qizilbash_build_fort_building_in_y
711
+ has_active_estate_agenda = estate_qizilbash_build_cavalry
712
+ }
713
+ }
714
+ has_estate_agenda_of_estate_ghulams = {
715
+ OR = {
716
+ has_active_estate_agenda = estate_ghulams_hire_advisor
717
+ has_active_estate_agenda = estate_ghulams_fire_advisor
718
+ has_active_estate_agenda = estate_ghulams_three_privileges
719
+ has_active_estate_agenda = estate_ghulams_reduce_war_exhaustion
720
+ has_active_estate_agenda = estate_ghulams_increase_monthly_military_power
721
+ has_active_estate_agenda = estate_ghulams_retake_core
722
+ has_active_estate_agenda = estate_ghulams_support_independence
723
+ has_active_estate_agenda = estate_ghulams_stop_converting_province_x
724
+ has_active_estate_agenda = estate_ghulams_build_an_army
725
+ has_active_estate_agenda = estate_ghulams_humiliate_rival
726
+ has_active_estate_agenda = estate_ghulams_build_army_building_in_y
727
+ has_active_estate_agenda = estate_ghulams_build_soldier_household
728
+ has_active_estate_agenda = estate_ghulams_crush_revolts
729
+ has_active_estate_agenda = estate_ghulams_expand_into_x
730
+ has_active_estate_agenda = estate_ghulams_condottieri_rivals
731
+ has_active_estate_agenda = estate_ghulams_bigger_army_than_rival
732
+ has_active_estate_agenda = estate_ghulams_build_up_manpower_reserves
733
+ has_active_estate_agenda = estate_ghulams_develop_x
734
+ has_active_estate_agenda = estate_ghulams_reduce_other_estate_influence
735
+ has_active_estate_agenda = estate_ghulams_build_fort_building_in_y
736
+ }
737
+ }
738
+
739
+ has_estate_agenda_of_estate = {
740
+ has_estate_agenda_of_$estate$ = yes
741
+ }
742
+
743
+ is_not_blocked_by_estate_privilege = {
744
+ if = {
745
+ limit = {
746
+ has_country_flag = block_$estate$_removing_reform
747
+ }
748
+ custom_trigger_tooltip = {
749
+ tooltip = is_blocked_by_estate_privilege_tt
750
+ NOT = { has_country_flag = block_$estate$_removing_reform }
751
+ }
752
+ }
753
+ }
754
+
755
+ can_select_adm_privilege_for_estate_nobles = {
756
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
757
+ NOT = { has_estate_privilege = estate_church_religious_state }
758
+ }
759
+ can_select_adm_privilege_for_estate_brahmins = {
760
+ NOT = { has_estate_privilege = estate_church_religious_state }
761
+ }
762
+ can_select_adm_privilege_for_estate_burghers = {
763
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
764
+ NOT = { has_estate_privilege = estate_church_religious_state }
765
+ }
766
+ can_select_adm_privilege_for_estate_church = {
767
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
768
+ }
769
+ can_select_adm_privilege_for_estate_cossacks = {
770
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
771
+ NOT = { has_estate_privilege = estate_church_religious_state }
772
+ }
773
+ can_select_adm_privilege_for_estate_dhimmi = {
774
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
775
+ NOT = { has_estate_privilege = estate_church_religious_state }
776
+ }
777
+ can_select_adm_privilege_for_estate_jains = {
778
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
779
+ NOT = { has_estate_privilege = estate_church_religious_state }
780
+ }
781
+ can_select_adm_privilege_for_estate_maratha = {
782
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
783
+ NOT = { has_estate_privilege = estate_church_religious_state }
784
+ }
785
+ can_select_adm_privilege_for_estate_nomadic_tribes = {
786
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
787
+ NOT = { has_estate_privilege = estate_church_religious_state }
788
+ }
789
+ can_select_adm_privilege_for_estate_rajput = {
790
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
791
+ NOT = { has_estate_privilege = estate_church_religious_state }
792
+ }
793
+ can_select_adm_privilege_for_estate_vaisyas = {
794
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
795
+ NOT = { has_estate_privilege = estate_church_religious_state }
796
+ }
797
+ can_select_adm_privilege_for_estate_janissaries = {
798
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
799
+ NOT = { has_estate_privilege = estate_church_religious_state }
800
+ }
801
+ can_select_adm_privilege_for_estate_eunuchs = {
802
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
803
+ NOT = { has_estate_privilege = estate_church_religious_state }
804
+ }
805
+ can_select_adm_privilege_for_estate_qizilbash = {
806
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
807
+ NOT = { has_estate_privilege = estate_church_religious_state }
808
+ }
809
+ can_select_adm_privilege_for_estate_ghulams = {
810
+ NOT = { has_estate_privilege = estate_brahmins_brahmin_governance }
811
+ NOT = { has_estate_privilege = estate_church_religious_state }
812
+ }
813
+
814
+ can_select_dip_privilege_for_estate_nobles = {
815
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
816
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
817
+ }
818
+ can_select_dip_privilege_for_estate_brahmins = {
819
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
820
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
821
+ }
822
+ can_select_dip_privilege_for_estate_burghers = {
823
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
824
+ }
825
+ can_select_dip_privilege_for_estate_church = {
826
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
827
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
828
+ }
829
+ can_select_dip_privilege_for_estate_cossacks = {
830
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
831
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
832
+ }
833
+ can_select_dip_privilege_for_estate_dhimmi = {
834
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
835
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
836
+ }
837
+ can_select_dip_privilege_for_estate_jains = {
838
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
839
+ }
840
+ can_select_dip_privilege_for_estate_maratha = {
841
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
842
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
843
+ }
844
+ can_select_dip_privilege_for_estate_nomadic_tribes = {
845
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
846
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
847
+ }
848
+ can_select_dip_privilege_for_estate_rajput = {
849
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
850
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
851
+ }
852
+ can_select_dip_privilege_for_estate_vaisyas = {
853
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
854
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
855
+ }
856
+ can_select_dip_privilege_for_estate_janissaries = {
857
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
858
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
859
+ }
860
+ can_select_dip_privilege_for_estate_eunuchs = {
861
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
862
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
863
+ }
864
+ can_select_dip_privilege_for_estate_qizilbash = {
865
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
866
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
867
+ }
868
+ can_select_dip_privilege_for_estate_ghulams = {
869
+ NOT = { has_estate_privilege = estate_burghers_land_of_commerce }
870
+ NOT = { has_estate_privilege = estate_jains_diplomacy }
871
+ }
872
+
873
+ can_select_mil_privilege_for_estate_nobles = {
874
+ NOT = { has_estate_privilege = estate_maratha_military }
875
+ NOT = { has_estate_privilege = estate_rajput_military }
876
+ NOT = { has_estate_privilege = estate_qizilbash_military }
877
+ NOT = { has_estate_privilege = estate_ghulams_military }
878
+ }
879
+ can_select_mil_privilege_for_estate_brahmins = {
880
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
881
+ NOT = { has_estate_privilege = estate_maratha_military }
882
+ NOT = { has_estate_privilege = estate_rajput_military }
883
+ NOT = { has_estate_privilege = estate_qizilbash_military }
884
+ NOT = { has_estate_privilege = estate_ghulams_military }
885
+ }
886
+ can_select_mil_privilege_for_estate_burghers = {
887
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
888
+ NOT = { has_estate_privilege = estate_maratha_military }
889
+ NOT = { has_estate_privilege = estate_rajput_military }
890
+ NOT = { has_estate_privilege = estate_qizilbash_military }
891
+ NOT = { has_estate_privilege = estate_ghulams_military }
892
+ }
893
+ can_select_mil_privilege_for_estate_church = {
894
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
895
+ NOT = { has_estate_privilege = estate_maratha_military }
896
+ NOT = { has_estate_privilege = estate_rajput_military }
897
+ NOT = { has_estate_privilege = estate_qizilbash_military }
898
+ NOT = { has_estate_privilege = estate_ghulams_military }
899
+ }
900
+ can_select_mil_privilege_for_estate_cossacks = {
901
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
902
+ NOT = { has_estate_privilege = estate_maratha_military }
903
+ NOT = { has_estate_privilege = estate_rajput_military }
904
+ NOT = { has_estate_privilege = estate_qizilbash_military }
905
+ NOT = { has_estate_privilege = estate_ghulams_military }
906
+ }
907
+ can_select_mil_privilege_for_estate_dhimmi = {
908
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
909
+ NOT = { has_estate_privilege = estate_maratha_military }
910
+ NOT = { has_estate_privilege = estate_rajput_military }
911
+ NOT = { has_estate_privilege = estate_qizilbash_military }
912
+ NOT = { has_estate_privilege = estate_ghulams_military }
913
+ }
914
+ can_select_mil_privilege_for_estate_jains = {
915
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
916
+ NOT = { has_estate_privilege = estate_maratha_military }
917
+ NOT = { has_estate_privilege = estate_rajput_military }
918
+ NOT = { has_estate_privilege = estate_qizilbash_military }
919
+ NOT = { has_estate_privilege = estate_ghulams_military }
920
+ }
921
+ can_select_mil_privilege_for_estate_maratha = {
922
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
923
+ NOT = { has_estate_privilege = estate_rajput_military }
924
+ NOT = { has_estate_privilege = estate_qizilbash_military }
925
+ NOT = { has_estate_privilege = estate_ghulams_military }
926
+ }
927
+ can_select_mil_privilege_for_estate_nomadic_tribes = {
928
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
929
+ NOT = { has_estate_privilege = estate_maratha_military }
930
+ NOT = { has_estate_privilege = estate_rajput_military }
931
+ NOT = { has_estate_privilege = estate_qizilbash_military }
932
+ NOT = { has_estate_privilege = estate_ghulams_military }
933
+ }
934
+ can_select_mil_privilege_for_estate_rajput = {
935
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
936
+ NOT = { has_estate_privilege = estate_maratha_military }
937
+ NOT = { has_estate_privilege = estate_qizilbash_military }
938
+ NOT = { has_estate_privilege = estate_ghulams_military }
939
+ }
940
+ can_select_mil_privilege_for_estate_vaisyas = {
941
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
942
+ NOT = { has_estate_privilege = estate_maratha_military }
943
+ NOT = { has_estate_privilege = estate_rajput_military }
944
+ NOT = { has_estate_privilege = estate_qizilbash_military }
945
+ NOT = { has_estate_privilege = estate_ghulams_military }
946
+ }
947
+ can_select_mil_privilege_for_estate_janissaries = {
948
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
949
+ NOT = { has_estate_privilege = estate_maratha_military }
950
+ NOT = { has_estate_privilege = estate_rajput_military }
951
+ NOT = { has_estate_privilege = estate_qizilbash_military }
952
+ NOT = { has_estate_privilege = estate_ghulams_military }
953
+ }
954
+ can_select_mil_privilege_for_estate_eunuchs = {
955
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
956
+ NOT = { has_estate_privilege = estate_maratha_military }
957
+ NOT = { has_estate_privilege = estate_rajput_military }
958
+ NOT = { has_estate_privilege = estate_qizilbash_military }
959
+ NOT = { has_estate_privilege = estate_ghulams_military }
960
+ }
961
+ can_select_mil_privilege_for_estate_qizilbash = {
962
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
963
+ NOT = { has_estate_privilege = estate_maratha_military }
964
+ NOT = { has_estate_privilege = estate_rajput_military }
965
+ NOT = { has_estate_privilege = estate_ghulams_military }
966
+ }
967
+ can_select_mil_privilege_for_estate_ghulams = {
968
+ NOT = { has_estate_privilege = estate_nobles_nobility_primacy }
969
+ NOT = { has_estate_privilege = estate_maratha_military }
970
+ NOT = { has_estate_privilege = estate_rajput_military }
971
+ NOT = { has_estate_privilege = estate_qizilbash_military }
972
+ }
973
+
974
+
975
+ #Estates
976
+ # estate_nobles
977
+ # estate_brahmins
978
+ # estate_burghers
979
+ # estate_church
980
+ # estate_cossacks
981
+ # estate_dhimmi
982
+ # estate_jains
983
+ # estate_maratha
984
+ # estate_nomadic_tribes
985
+ # estate_rajput
986
+ # estate_vaisyas
987
+ # estate_janissaries
988
+ # estate_eunuchs
989
+ # estate_qizilbash
990
+ # estate_ghulams
991
+ #Powers
992
+ # adm
993
+ # dip
994
+ # mil
995
+ can_select_monarch_power_privilege = {
996
+ custom_trigger_tooltip = {
997
+ tooltip = no_other_$type$_privilege
998
+ can_select_$type$_privilege_for_$estate$ = yes
999
+ }
1000
+ }
1001
+
1002
+ # Supports the following parameters
1003
+ ###########################################
1004
+ # estate_nobles
1005
+ # estate_brahmins
1006
+ # estate_burghers
1007
+ # estate_church
1008
+ # estate_cossacks
1009
+ # estate_dhimmi
1010
+ # estate_jains
1011
+ # estate_maratha
1012
+ # estate_nomadic_tribes
1013
+ # estate_rajput
1014
+ # estate_vaisyas
1015
+ # estate_janissaries
1016
+ # estate_eunuchs
1017
+ # estate_qizilbash
1018
+ # estate_ghulams
1019
+ # all - have ALL of them available
1020
+ selected_grand_vizier_from_estate = {
1021
+ has_country_flag = selected_grand_vizier_from_$estate$
27
1022
  }
common/scripted_triggers/00_scripted_triggers_startup_screen.txt CHANGED
@@ -26,5 +26,7 @@ tag_with_plural_name_trigger = {
26
26
  tag = TIM
27
27
  tag = TUR
28
28
  tag = YAS
29
+ tag = AVE
30
+ tag = EIC
29
31
  }
30
32
  }
common/scripted_triggers/01_scripted_triggers_province_modifiers.txt CHANGED
@@ -64,6 +64,11 @@ has_river_estuary_trigger = {
64
64
  has_province_modifier = red_river_estuary_modifier
65
65
  has_province_modifier = irrawaddy_estuary_modifier
66
66
  has_province_modifier = kongo_estuary_modifier
67
+ has_province_modifier = amur_estuary_modifier
68
+ has_province_modifier = orinoco_estuary_modifier
69
+ #China
70
+ has_province_modifier = mng_bogue_modifier
71
+ has_province_modifier = expanded_nile_estuary_modifier
67
72
  }
68
73
  }
69
74
  }
@@ -132,10 +137,27 @@ has_no_river_estuary_trigger = {
132
137
  has_province_modifier = red_river_estuary_modifier
133
138
  has_province_modifier = irrawaddy_estuary_modifier
134
139
  has_province_modifier = kongo_estuary_modifier
140
+ has_province_modifier = amur_estuary_modifier
141
+ has_province_modifier = orinoco_estuary_modifier
142
+ has_province_modifier = mng_bogue_modifier
135
143
  }
136
144
  }
137
145
  }
138
146
 
147
+ #Has special Trade modifier
148
+ has_special_trade_modifier = {
149
+ OR = {
150
+ has_province_modifier = sound_toll
151
+ has_province_modifier = bosphorous_sound_toll
152
+ has_province_modifier = trade_post_modifier
153
+ has_province_modifier = tur_hormuz_toll_modifier
154
+ has_province_modifier = birth_of_a_new_city_dip
155
+ has_province_modifier = birthplace_of_the_new_world
156
+ has_province_modifier = growth_of_global_trade
157
+ has_province_modifier = dominant_trade_hub
158
+ }
159
+ }
160
+
139
161
  #Province with special production modifier:
140
162
  province_with_special_goods_produced_trigger = {
141
163
  OR = {
@@ -148,13 +170,14 @@ province_with_special_goods_produced_trigger = {
148
170
  has_province_modifier = spice_islands_modifier
149
171
  has_province_modifier = comet_ore_modifier
150
172
  has_province_modifier = paradise_modifier
151
- has_province_modifier = cerro_rico_modifier
152
173
  has_province_modifier = ned_house_of_elzevir
153
174
  has_province_modifier = bookmarket_of_x
154
175
  has_province_modifier = grand_bank_fisheries
155
176
  has_province_modifier = diamond_district
177
+ has_province_modifier = diamond_district2
156
178
  has_province_modifier = jingdezhen_kilns
157
179
  has_province_modifier = perfume_capital
180
+ has_active_triggered_province_modifier = cerro_rico_modifier
158
181
  }
159
182
  }
160
183
 
@@ -170,13 +193,14 @@ province_without_special_goods_produced_trigger = {
170
193
  has_province_modifier = spice_islands_modifier
171
194
  has_province_modifier = comet_ore_modifier
172
195
  has_province_modifier = paradise_modifier
173
- has_province_modifier = cerro_rico_modifier
174
196
  has_province_modifier = ned_house_of_elzevir
175
197
  has_province_modifier = bookmarket_of_x
176
198
  has_province_modifier = grand_bank_fisheries
177
199
  has_province_modifier = diamond_district
200
+ has_province_modifier = diamond_district2
178
201
  has_province_modifier = jingdezhen_kilns
179
202
  has_province_modifier = perfume_capital
203
+ has_active_triggered_province_modifier = cerro_rico_modifier
180
204
  has_latent_trade_goods = coal
181
205
  }
182
206
  }
common/scripted_triggers/02_scripted_triggers_missions.txt ADDED
@@ -0,0 +1,895 @@
1
+ # This file contains all triggers which are are needed for dynamic effects, but have more than 512 characters in total.
2
+ tur_al_andalus_eyalet_limit_a = {
3
+ OR = {
4
+ any_subject_country = {
5
+ religion = ROOT
6
+ owns = 225
7
+ owns = 223
8
+ owns = 226
9
+ owns = 224
10
+ num_of_owned_provinces_with = {
11
+ region = iberia_region
12
+ value = 10
13
+ }
14
+ capital_scope = {
15
+ region = iberia_region
16
+ }
17
+ }
18
+ any_ally = {
19
+ religion = ROOT
20
+ owns = 225
21
+ owns = 223
22
+ owns = 226
23
+ owns = 224
24
+ num_of_owned_provinces_with = {
25
+ region = iberia_region
26
+ value = 10
27
+ }
28
+ capital_scope = {
29
+ region = iberia_region
30
+ }
31
+ }
32
+ }
33
+ }
34
+
35
+ BYZ_roman_empire_decision_trigger = {
36
+ OR = {
37
+ #Core Regions
38
+ region = anatolia_region
39
+ region = egypt_region
40
+ region = italy_region
41
+ region = france_region
42
+ region = iberia_region
43
+ region = mashriq_region
44
+ region = balkan_region
45
+ #England
46
+ area = east_midlands_area
47
+ area = west_midlands_area
48
+ area = yorkshire_area
49
+ area = wessex_area
50
+ area = home_counties_area
51
+ area = east_anglia_area
52
+ area = wales_area
53
+ area = scottish_marches_area
54
+ #Areas within South Germany
55
+ area = romandie_area
56
+ area = upper_rhineland_area
57
+ area = romandie_area
58
+ area = alsace_area
59
+ area = palatinate_area
60
+ area = lower_rhineland_area
61
+ area = carinthia_area
62
+ province_id = 85 #cologne
63
+ area = north_brabant_area
64
+ area = brabant_area
65
+ area = flanders_area
66
+ area = wallonia_area
67
+ province_id = 96 #zeeland
68
+ area = inner_austria_area
69
+ area = austria_proper_area
70
+ area = tirol_area
71
+ area = east_bavaria_area
72
+ area = lower_bavaria_area
73
+ area = upper_bavaria_area
74
+ area = upper_swabia_area
75
+ area = lower_swabia_area
76
+ area = switzerland_area
77
+ #Carthage
78
+ area = barbary_coast_area
79
+ area = kabylia_area
80
+ area = tunisia_area
81
+ area = djerba_area
82
+ area = tripolitania_area
83
+ area = northern_morocco_area
84
+ area = algiers_area
85
+ province_id = 343
86
+ #Danubia
87
+ area = transdanubia_area
88
+ }
89
+ NOT = { area = lower_nubia_area }
90
+ NOT = { area = iraq_arabi_area }
91
+ NOT = { area = basra_area }
92
+ }
93
+
94
+ BYZ_has_rights_of_man = {
95
+ has_dlc = "Rights of Man"
96
+ }
97
+
98
+ BYZ_has_leviathan = {
99
+ has_dlc = "Leviathan"
100
+ }
101
+
102
+ BYZ_eligible_province_for_culture_conversion = {
103
+ OR = {
104
+ area = aydin_area
105
+ area = hudavendigar_area
106
+ AND = {
107
+ owner = {
108
+ mission_completed = BYZ_avenge_1071
109
+ }
110
+ region = anatolia_region
111
+ }
112
+ }
113
+ }
114
+
115
+ BYZ_reached_pronia_slot_limit = {
116
+ variable_arithmetic_trigger = {
117
+ export_to_variable = {
118
+ variable_name = current_amount_of_pronoiars
119
+ value = modifier:pronoia_amount_check_influence
120
+ }
121
+ export_to_variable = {
122
+ variable_name = max_amount_of_pronoiars
123
+ value = modifier:num_of_pronoiars
124
+ }
125
+ check_variable = {
126
+ which = current_amount_of_pronoiars
127
+ which = max_amount_of_pronoiars
128
+ }
129
+ }
130
+ }
131
+
132
+ BYZ_enough_pronoia_slots = {
133
+ variable_arithmetic_trigger = {
134
+ export_to_variable = {
135
+ variable_name = current_amount_of_pronoiars
136
+ value = modifier:pronoia_amount_check_influence
137
+ }
138
+ export_to_variable = {
139
+ variable_name = max_amount_of_pronoiars
140
+ value = modifier:num_of_pronoiars
141
+ }
142
+ NOT = {
143
+ check_variable = {
144
+ which = current_amount_of_pronoiars
145
+ which = max_amount_of_pronoiars
146
+ }
147
+ }
148
+ }
149
+ }
150
+
151
+ BYZ_branch_trigger = {
152
+ custom_trigger_tooltip = {
153
+ tooltip = BYZ_this_is_a_branching_mission
154
+ always = no
155
+ }
156
+ }
157
+
158
+ byz_is_in_middle_east_or_europe = {
159
+ capital_scope = {
160
+ OR = {
161
+ superregion = europe_superregion
162
+ superregion = eastern_europe_superregion
163
+ superregion = near_east_superregion
164
+ superregion = persia_superregion
165
+ region = maghreb_region
166
+ }
167
+ }
168
+ }
169
+
170
+ BYZ_historical_interest_against_ottomans = {
171
+ OR = {
172
+ tag = POL
173
+ tag = LIT
174
+ tag = HUN
175
+ tag = HAB
176
+ tag = ALB
177
+ }
178
+ }
179
+
180
+ BYZ_is_not_latin_empire = {
181
+ if = {
182
+ limit = {
183
+ tag = LAE
184
+ religion = catholic
185
+ }
186
+ custom_trigger_tooltip = {
187
+ tooltip = BYZ_may_not_complete_as_catholic_latin_empire
188
+ always = no
189
+ }
190
+ }
191
+ }
192
+
193
+ has_orthodox_religious_icon_trigger = {
194
+ custom_trigger_tooltip = {
195
+ tooltip = BYZ_has_religious_icon
196
+ OR = {
197
+ current_icon = icon_michael
198
+ current_icon = icon_eleusa
199
+ current_icon = icon_pancreator
200
+ current_icon = icon_nicholas
201
+ current_icon = icon_climacus
202
+ }
203
+ }
204
+ }
205
+
206
+ has_branching_missions = {
207
+ OR = {
208
+ #Origins
209
+ has_mission = mal_pick_religious_direction
210
+ has_mission = son_conquer_the_mossi
211
+ has_mission = kon_annex_vassals #Technically not the starting point of the missions
212
+ #Lions of the North
213
+ has_mission = swe_the_theologian_discussions
214
+ has_mission = dan_the_age_of_reformation
215
+ has_mission = nor_religious_path_mission
216
+ has_mission = teu_defeat_the_poles
217
+ has_mission = teu_pru_teutonic_order_and_the_empire
218
+ has_mission = liv_strengthen_ruling_authority
219
+ has_mission = pol_varna_aftermath
220
+ #Domination
221
+ has_mission = tur_seize_the_caliphate
222
+ has_mission = mng_inward_perfection
223
+ has_mission = qng_regulate_trade
224
+ has_mission = gbr_ave_hundred_years_war
225
+ has_mission = fra_ducal_lands_avignon
226
+ has_mission = fra_border_empire
227
+ has_mission = jap_bushido_code
228
+ has_mission = jap_new_buddha
229
+ #king of Kings
230
+ has_mission = BYZ_theme_system
231
+ has_mission = per_our_religious_direction
232
+ }
233
+ }
234
+
235
+ has_preview_mission_flag = {
236
+ check_variable = {
237
+ which = can_preview_missions_var
238
+ value = 1
239
+ }
240
+ }
241
+
242
+ can_preview_batch = {
243
+ has_country_flag = has_batch_$batch$_active
244
+ }
245
+
246
+ can_preview_mission_of_key_and_batch = {
247
+ has_country_flag = can_choose_$key$_$batch$_branching_missions
248
+ }
249
+ can_preview_mission_of_key = {
250
+ or = {
251
+ can_preview_mission_of_key_and_batch = { key = $key$ batch = 1 }
252
+ can_preview_mission_of_key_and_batch = { key = $key$ batch = 2 }
253
+ can_preview_mission_of_key_and_batch = { key = $key$ batch = 3 }
254
+ }
255
+ }
256
+ can_preview_missions = {
257
+ custom_trigger_tooltip = {
258
+ tooltip = preview_missions_decision_ct
259
+ OR = {
260
+ #Origins
261
+ can_preview_mission_of_key = { key = MAL }
262
+ can_preview_mission_of_key = { key = SON }
263
+ can_preview_mission_of_key = { key = KON }
264
+ #Lions of the North
265
+ can_preview_mission_of_key = { key = DAN }
266
+ can_preview_mission_of_key = { key = SWE }
267
+ can_preview_mission_of_key = { key = NOR }
268
+ can_preview_mission_of_key = { key = TEU }
269
+ can_preview_mission_of_key = { key = TEU_PRU }
270
+ can_preview_mission_of_key = { key = LIV }
271
+ can_preview_mission_of_key = { key = POL }
272
+ #Domination
273
+ can_preview_mission_of_key = { key = TUR }
274
+ can_preview_mission_of_key = { key = MNG }
275
+ can_preview_mission_of_key = { key = QNG }
276
+ can_preview_mission_of_key = { key = GBR }
277
+ can_preview_mission_of_key = { key = FRA }
278
+ can_preview_mission_of_key = { key = FRA_HRE }
279
+ can_preview_mission_of_key = { key = JAP }
280
+ can_preview_mission_of_key = { key = JAP_RELI }
281
+ #King of Kings
282
+ can_preview_mission_of_key = { key = BYZ }
283
+ can_preview_mission_of_key = { key = PER }
284
+ }
285
+ }
286
+ }
287
+
288
+ not_in_mission_preview_mode = {
289
+ if = {
290
+ limit = {
291
+ check_variable = {
292
+ which = can_preview_missions_var
293
+ value = 1
294
+ }
295
+ can_preview_mission_of_key = { key = $key$ }
296
+ }
297
+ custom_trigger_tooltip = {
298
+ tooltip = BYZ_we_are_in_preview
299
+ always = no
300
+ }
301
+ }
302
+ }
303
+
304
+ has_selected_a_branch = {
305
+ custom_trigger_tooltip = {
306
+ tooltip = has_selected_a_branch_tt
307
+ OR = {
308
+ #Origins
309
+ #MAL
310
+ AND = {
311
+ OR = {
312
+ has_country_flag = mal_decide_for_conversion
313
+ has_country_flag = mal_decide_for_tolerance
314
+ }
315
+ can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ }
316
+ }
317
+ #SON
318
+ AND = {
319
+ OR = {
320
+ has_country_flag = son_islamic_focus
321
+ has_country_flag = son_tolerance_focus
322
+ }
323
+ can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ }
324
+ }
325
+ #KON
326
+ AND = {
327
+ OR = {
328
+ has_country_flag = kon_picked_fetishism
329
+ has_country_flag = kon_picked_side_with_europeans
330
+ }
331
+ can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ }
332
+ }
333
+ #Lions of the North
334
+ #SWE
335
+ AND = {
336
+ OR = {
337
+ has_country_flag = sca_unlock_catholic_missions
338
+ has_country_flag = sca_unlock_protestant_missions
339
+ has_country_flag = sca_unlock_humanist_missions
340
+ has_country_flag = sca_unlock_norse_missions
341
+ }
342
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
343
+ }
344
+ #DAN
345
+ AND = {
346
+ OR = {
347
+ has_country_flag = sca_unlock_catholic_missions
348
+ has_country_flag = sca_unlock_protestant_missions
349
+ has_country_flag = sca_unlock_humanist_missions
350
+ has_country_flag = sca_unlock_norse_missions
351
+ }
352
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
353
+ }
354
+ #NOR
355
+ AND = {
356
+ OR = {
357
+ has_country_flag = sca_unlock_catholic_missions
358
+ has_country_flag = sca_unlock_protestant_missions
359
+ has_country_flag = sca_unlock_humanist_missions
360
+ has_country_flag = sca_unlock_norse_missions
361
+ }
362
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
363
+ }
364
+ #TEU
365
+ AND = {
366
+ OR = {
367
+ has_country_flag = teu_prussian_path
368
+ has_country_flag = teu_crusader_path
369
+ }
370
+ can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ }
371
+ }
372
+ #TEU-PRU
373
+ AND = {
374
+ OR = {
375
+ has_country_flag = teu_conquest_hre_path
376
+ has_country_flag = teu_diplomacy_hre_path
377
+ has_country_flag = teu_kingdom_prussia_path
378
+ }
379
+ can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ }
380
+ }
381
+ #LIV
382
+ AND = {
383
+ OR = {
384
+ has_country_flag = liv_livonian_path
385
+ has_country_flag = liv_crusader_path
386
+ }
387
+ can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ }
388
+ }
389
+ #POL
390
+ AND = {
391
+ OR = {
392
+ has_country_flag = pol_chose_pu_flag
393
+ has_country_flag = pol_denied_pu_flag
394
+ }
395
+ can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ }
396
+ }
397
+ #Domination
398
+ #TUR
399
+ AND = {
400
+ OR = {
401
+ has_country_flag = tur_chose_legalism
402
+ has_country_flag = tur_chose_mysticism
403
+ has_country_flag = tur_non_muslim_path_flag
404
+ }
405
+ can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ }
406
+ }
407
+ #MNG
408
+ AND = {
409
+ OR = {
410
+ has_country_flag = mng_dynamic_1
411
+ has_country_flag = mng_dynamic_2
412
+ }
413
+ can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ }
414
+ }
415
+ #QNG
416
+ AND = {
417
+ OR = {
418
+ has_country_flag = qng_open_ports_flag
419
+ has_country_flag = qng_close_ports_flag
420
+ }
421
+ can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ }
422
+ }
423
+ #GBR
424
+ AND = {
425
+ OR = {
426
+ has_country_flag = eng_took_gbr_branch
427
+ has_country_flag = eng_took_ave_branch
428
+ }
429
+ can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ }
430
+ }
431
+ #FRA
432
+ AND = {
433
+ OR = {
434
+ has_country_flag = fra_chose_to_piss_off_pope_flag
435
+ has_country_flag = fra_papal_lap_dop_flag
436
+ }
437
+ can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ }
438
+ }
439
+ #FRA_HRE
440
+ AND = {
441
+ OR = {
442
+ has_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
443
+ has_country_flag = fra_fufujoni_flag
444
+ }
445
+ can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ }
446
+ }
447
+ #JAP
448
+ AND = {
449
+ OR = {
450
+ has_country_flag = jap_mushashi_5_books_flag
451
+ has_country_flag = jap_domineering_naval_focus_flag
452
+ }
453
+ can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ }
454
+ }
455
+ #JAP_RELI
456
+ AND = {
457
+ OR = {
458
+ has_country_flag = christianity_defeated_flag
459
+ has_country_flag = a_kirishitan_realm
460
+ }
461
+ can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ }
462
+ }
463
+ #King of Kings
464
+ #BYZ
465
+ AND = {
466
+ OR = {
467
+ has_country_flag = BYZ_decentralized
468
+ has_country_flag = BYZ_centralized
469
+ }
470
+ can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ }
471
+ }
472
+ #PER
473
+ AND = {
474
+ OR = {
475
+ has_country_flag = per_shia_missions
476
+ has_country_flag = per_sunni_missions
477
+ has_country_flag = per_zoroastrian_missions
478
+ }
479
+ can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ }
480
+ }
481
+ }
482
+ }
483
+ }
484
+
485
+ num_of_mission_branches_3 = {
486
+ OR = {
487
+ #Origins
488
+ # none
489
+ #Lions of the North
490
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
491
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
492
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
493
+ can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ }
494
+ #Domination
495
+ can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ }
496
+ #King of Kings
497
+ can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ }
498
+ }
499
+ }
500
+
501
+ num_of_mission_branches_4 = {
502
+ OR = {
503
+ #Origins
504
+ # none
505
+ #Lions of the North
506
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
507
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
508
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
509
+ #Domination
510
+ # none
511
+ #King of Kings
512
+ # none
513
+ }
514
+ }
515
+
516
+ num_of_mission_branches_5 = {
517
+ always = no
518
+ has_country_flag = has_$batch$_batch #Dummy
519
+ }
520
+ num_of_mission_branches = {
521
+ num_of_mission_branches_$value$ = { batch = $batch$ }
522
+ }
523
+
524
+ currently_selected_branch_1 = {
525
+ OR = {
526
+ #Origins
527
+ #MAL
528
+ AND = {
529
+ can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ }
530
+ has_country_flag = mal_decide_for_conversion
531
+ }
532
+ #SON
533
+ AND = {
534
+ can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ }
535
+ has_country_flag = son_islamic_focus
536
+ }
537
+ #KON
538
+ AND = {
539
+ can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ }
540
+ has_country_flag = kon_picked_fetishism
541
+ }
542
+ #Lions of the North
543
+ #SWE
544
+ AND = {
545
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
546
+ has_country_flag = sca_unlock_catholic_missions
547
+ }
548
+ #DAN
549
+ AND = {
550
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
551
+ has_country_flag = sca_unlock_catholic_missions
552
+ }
553
+ #NOR
554
+ AND = {
555
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
556
+ has_country_flag = sca_unlock_catholic_missions
557
+ }
558
+ #TEU
559
+ AND = {
560
+ can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ }
561
+ has_country_flag = teu_prussian_path
562
+ }
563
+ #TEU-PRU
564
+ AND = {
565
+ can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ }
566
+ has_country_flag = teu_conquest_hre_path
567
+ }
568
+ #LIV
569
+ AND = {
570
+ can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ }
571
+ has_country_flag = liv_livonian_path
572
+ }
573
+ #POL
574
+ AND = {
575
+ can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ }
576
+ has_country_flag = pol_chose_pu_flag
577
+ }
578
+ #Domination
579
+ #TUR
580
+ AND = {
581
+ can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ }
582
+ has_country_flag = tur_chose_legalism
583
+ }
584
+ #MNG
585
+ AND = {
586
+ can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ }
587
+ has_country_flag = mng_dynamic_1
588
+ }
589
+ #QNG
590
+ AND = {
591
+ can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ }
592
+ has_country_flag = qng_open_ports_flag
593
+ }
594
+ #GBR
595
+ AND = {
596
+ can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ }
597
+ has_country_flag = eng_took_gbr_branch
598
+ }
599
+ #FRA
600
+ AND = {
601
+ can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ }
602
+ has_country_flag = fra_chose_to_piss_off_pope_flag
603
+ }
604
+ #FRA_HRE
605
+ AND = {
606
+ can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ }
607
+ has_country_flag = fra_shed_the_blood_of_the_saxon_man_flag
608
+ }
609
+ #JAP
610
+ AND = {
611
+ can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ }
612
+ has_country_flag = jap_mushashi_5_books_flag
613
+ }
614
+ #JAP_RELI
615
+ AND = {
616
+ can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ }
617
+ has_country_flag = christianity_defeated_flag
618
+ }
619
+ #King of Kings
620
+ #BYZ
621
+ AND = {
622
+ can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ }
623
+ has_country_flag = BYZ_centralized
624
+ }
625
+ #PER
626
+ AND = {
627
+ can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ }
628
+ has_country_flag = per_shia_missions
629
+ }
630
+ }
631
+ }
632
+ currently_selected_branch_2 = {
633
+ OR = {
634
+ #Origins
635
+ #MAL
636
+ AND = {
637
+ can_preview_mission_of_key_and_batch = { key = MAL batch = $batch$ }
638
+ has_country_flag = mal_decide_for_tolerance
639
+ }
640
+ #SON
641
+ AND = {
642
+ can_preview_mission_of_key_and_batch = { key = SON batch = $batch$ }
643
+ has_country_flag = son_tolerance_focus
644
+ }
645
+ #KON
646
+ AND = {
647
+ can_preview_mission_of_key_and_batch = { key = KON batch = $batch$ }
648
+ has_country_flag = kon_picked_side_with_europeans
649
+ }
650
+ #Lions of the North
651
+ #SWE
652
+ AND = {
653
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
654
+ has_country_flag = sca_unlock_protestant_missions
655
+ }
656
+ #DAN
657
+ AND = {
658
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
659
+ has_country_flag = sca_unlock_protestant_missions
660
+ }
661
+ #NOR
662
+ AND = {
663
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
664
+ has_country_flag = sca_unlock_protestant_missions
665
+ }
666
+ #TEU
667
+ AND = {
668
+ can_preview_mission_of_key_and_batch = { key = TEU batch = $batch$ }
669
+ has_country_flag = teu_crusader_path
670
+ }
671
+ #TEU-PRU
672
+ AND = {
673
+ can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ }
674
+ has_country_flag = teu_diplomacy_hre_path
675
+ }
676
+ #LIV
677
+ AND = {
678
+ can_preview_mission_of_key_and_batch = { key = LIV batch = $batch$ }
679
+ has_country_flag = liv_crusader_path
680
+ }
681
+ #POL
682
+ AND = {
683
+ can_preview_mission_of_key_and_batch = { key = POL batch = $batch$ }
684
+ has_country_flag = pol_denied_pu_flag
685
+ }
686
+ #Domination
687
+ #TUR
688
+ AND = {
689
+ can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ }
690
+ has_country_flag = tur_chose_mysticism
691
+ }
692
+ #MNG
693
+ AND = {
694
+ can_preview_mission_of_key_and_batch = { key = MNG batch = $batch$ }
695
+ has_country_flag = mng_dynamic_2
696
+ }
697
+ #QNG
698
+ AND = {
699
+ can_preview_mission_of_key_and_batch = { key = QNG batch = $batch$ }
700
+ has_country_flag = qng_close_ports_flag
701
+ }
702
+ #GBR
703
+ AND = {
704
+ can_preview_mission_of_key_and_batch = { key = GBR batch = $batch$ }
705
+ has_country_flag = eng_took_ave_branch
706
+ }
707
+ #FRA
708
+ AND = {
709
+ can_preview_mission_of_key_and_batch = { key = FRA batch = $batch$ }
710
+ has_country_flag = fra_papal_lap_dop_flag
711
+ }
712
+ #FRA_HRE
713
+ AND = {
714
+ can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ }
715
+ has_country_flag = fra_fufujoni_flag
716
+ }
717
+ #JAP
718
+ AND = {
719
+ can_preview_mission_of_key_and_batch = { key = JAP batch = $batch$ }
720
+ has_country_flag = jap_domineering_naval_focus_flag
721
+ }
722
+ #JAP_RELI
723
+ AND = {
724
+ can_preview_mission_of_key_and_batch = { key = JAP_RELI batch = $batch$ }
725
+ has_country_flag = a_kirishitan_realm
726
+ }
727
+ #King of Kings
728
+ #BYZ
729
+ AND = {
730
+ can_preview_mission_of_key_and_batch = { key = BYZ batch = $batch$ }
731
+ has_country_flag = BYZ_decentralized
732
+ }
733
+ #PER
734
+ AND = {
735
+ can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ }
736
+ has_country_flag = per_sunni_missions
737
+ }
738
+ }
739
+ }
740
+ currently_selected_branch_3 = {
741
+ OR = {
742
+ #Origins
743
+ # none
744
+ #Lions of the North
745
+ #SWE
746
+ AND = {
747
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
748
+ has_country_flag = sca_unlock_humanist_missions
749
+ }
750
+ #DAN
751
+ AND = {
752
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
753
+ has_country_flag = sca_unlock_humanist_missions
754
+ }
755
+ #NOR
756
+ AND = {
757
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
758
+ has_country_flag = sca_unlock_humanist_missions
759
+ }
760
+ #TEU-PRU
761
+ AND = {
762
+ can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ }
763
+ has_country_flag = teu_kingdom_prussia_path
764
+ }
765
+ #Domination
766
+ #TUR
767
+ AND = {
768
+ can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ }
769
+ has_country_flag = tur_non_muslim_path_flag
770
+ }
771
+ #King of Kings
772
+ #PER
773
+ AND = {
774
+ can_preview_mission_of_key_and_batch = { key = PER batch = $batch$ }
775
+ has_country_flag = per_zoroastrian_missions
776
+ }
777
+ }
778
+ }
779
+ currently_selected_branch_4 = {
780
+ OR = {
781
+ #Origins
782
+ # none
783
+ #Lions of the North
784
+ #SWE
785
+ AND = {
786
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
787
+ has_country_flag = sca_unlock_norse_missions
788
+ }
789
+ #DAN
790
+ AND = {
791
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
792
+ has_country_flag = sca_unlock_norse_missions
793
+ }
794
+ #NOR
795
+ AND = {
796
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
797
+ has_country_flag = sca_unlock_norse_missions
798
+ }
799
+ #Domination
800
+ # none
801
+ #King of Kings
802
+ # none
803
+ }
804
+ }
805
+ currently_selected_branch_5 = {
806
+ always = no
807
+ has_country_flag = has_$batch$_batch #dummy
808
+ }
809
+ currently_selected_branch = {
810
+ currently_selected_branch_$value$ = { batch = $batch$ }
811
+ }
812
+
813
+ can_select_branch_1 = {
814
+ if = {
815
+ limit = {
816
+ or = {
817
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
818
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
819
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
820
+ }
821
+ }
822
+ religion_group = christian
823
+ }
824
+ else = { hidden_trigger = { or = { always = yes } } }
825
+ if = {
826
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
827
+ religion_group = muslim
828
+ }
829
+ else = { hidden_trigger = { or = { always = yes } } }
830
+ }
831
+ can_select_branch_2 = {
832
+ if = {
833
+ limit = {
834
+ or = {
835
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
836
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
837
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
838
+ }
839
+ }
840
+ religion_group = christian
841
+ }
842
+ else = { hidden_trigger = { or = { always = yes } } }
843
+ if = {
844
+ limit = { can_preview_mission_of_key_and_batch = { key = TEU_PRU batch = $batch$ } }
845
+ hre_size = 1
846
+ }
847
+ else = { hidden_trigger = { always = yes } }
848
+ if = {
849
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
850
+ religion_group = muslim
851
+ }
852
+ else = { hidden_trigger = { or = { always = yes } } }
853
+ if = {
854
+ limit = { can_preview_mission_of_key_and_batch = { key = FRA_HRE batch = $batch$ } }
855
+ is_emperor = no
856
+ }
857
+ else = { hidden_trigger = { or = { always = yes } } }
858
+ }
859
+ can_select_branch_3 = {
860
+ if = {
861
+ limit = {
862
+ or = {
863
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
864
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
865
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
866
+ }
867
+ }
868
+ not = { religion = norse_pagan_reformed }
869
+ }
870
+ else = { hidden_trigger = { or = { always = yes } } }
871
+ if = {
872
+ limit = { can_preview_mission_of_key_and_batch = { key = TUR batch = $batch$ } }
873
+ not = { religion_group = muslim }
874
+ }
875
+ else = { hidden_trigger = { or = { always = yes } } }
876
+ }
877
+ can_select_branch_4 = {
878
+ if = {
879
+ limit = {
880
+ or = {
881
+ can_preview_mission_of_key_and_batch = { key = SWE batch = $batch$ }
882
+ can_preview_mission_of_key_and_batch = { key = DAN batch = $batch$ }
883
+ can_preview_mission_of_key_and_batch = { key = NOR batch = $batch$ }
884
+ }
885
+ }
886
+ religion = norse_pagan_reformed
887
+ }
888
+ else = { hidden_trigger = { or = { always = yes } } }
889
+ }
890
+ can_select_branch_5 = {
891
+ hidden_trigger = { or = { always = yes has_country_flag = has_$batch$_batch } }
892
+ }
893
+ can_select_branch = {
894
+ can_select_branch_$value$ = { batch = $batch$ }
895
+ }
common/scripted_triggers/02_scripted_triggers_parliaments.txt ADDED
@@ -0,0 +1,227 @@
1
+ num_of_issues_passed = {
2
+ if = {
3
+ limit = {
4
+ OR = {
5
+ has_dlc = "Common Sense"
6
+ has_dlc = "Domination"
7
+ }
8
+ has_parliament = yes
9
+ }
10
+ custom_trigger_tooltip = {
11
+ tooltip = num_of_issues_passed_$amount$
12
+ check_variable = {
13
+ which = issues_passed
14
+ value = $amount$
15
+ }
16
+ }
17
+ }
18
+ else = {
19
+ [[alternative_trigger]$alternative_trigger$]
20
+ }
21
+ }
22
+
23
+ #List of arguments of elements which should be not be used for generating the bribes
24
+
25
+ has_not_bribe_blocking_debate_active_adm = {
26
+ NOT = { current_debate = charter_university }
27
+ }
28
+ has_not_bribe_blocking_debate_active_dip = {
29
+ NOT = { current_debate = development_of_infrastructure }
30
+ }
31
+ has_not_bribe_blocking_debate_active_mil = {
32
+ always = yes
33
+ }
34
+ has_not_bribe_blocking_debate_active_estate = {
35
+ NOT = { current_debate = appease_the_estates }
36
+ }
37
+ has_not_bribe_blocking_debate_active_corruption = {
38
+ NOT = { current_debate = issue_investigate_corruption }
39
+ }
40
+ has_not_bribe_blocking_debate_active_inflation = {
41
+ always = yes
42
+ }
43
+ has_not_bribe_blocking_debate_active_war_exhaustion = {
44
+ NOT = { current_debate = backing_war_effort }
45
+ }
46
+ has_not_bribe_blocking_debate_active_army_tradition = {
47
+ NOT = { current_debate = drill_exercises }
48
+ NOT = { current_debate = expand_officer_lists }
49
+ NOT = { current_debate = extended_peacetime_officer_commissions }
50
+ }
51
+ has_not_bribe_blocking_debate_active_navy_tradition = {
52
+ NOT = { current_debate = appoint_a_grand_admiral }
53
+ NOT = { current_debate = extended_peacetime_officer_commissions }
54
+ NOT = { current_debate = expand_navy }
55
+ }
56
+ has_not_bribe_blocking_debate_active_imperial_authority = {
57
+ NOT = { current_debate = establish_the_imperial_diet_act }
58
+ NOT = { current_debate = act_of_imperial_diplomacy }
59
+ NOT = { current_debate = landsknechte_act }
60
+ #NOT = { current_debate = itio_in_partes_act }
61
+ NOT = { current_debate = imperial_religious_unity_act }
62
+ NOT = { current_debate = gemeiner_pfennig_act }
63
+ }
64
+ has_not_bribe_blocking_debate_active_mandate = {
65
+ always = yes
66
+ }
67
+ has_not_bribe_blocking_debate_active_manpower = {
68
+ NOT = { current_debate = nationwide_census }
69
+ NOT = { current_debate = expand_the_army }
70
+ NOT = { current_debate = the_draft }
71
+ }
72
+ has_not_bribe_blocking_debate_active_sailors = {
73
+ NOT = { current_debate = emergency_impressment_act }
74
+ NOT = { current_debate = expand_navy }
75
+ NOT = { current_debate = impressment_of_sailors }
76
+ }
77
+ has_not_bribe_blocking_debate_active_mercantilism = {
78
+ NOT = { current_debate = imports_exports }
79
+ }
80
+ has_not_bribe_blocking_debate_active_prestige = {
81
+ NOT = { current_debate = fund_national_monuments }
82
+ }
83
+ has_not_bribe_blocking_debate_active_treasury = {
84
+ NOT = { current_debate = government_debt_reduction }
85
+ NOT = { current_debate = increase_taxes }
86
+ NOT = { current_debate = colonial_taxation }
87
+ }
88
+ has_not_bribe_blocking_debate_active_army_professionalism = {
89
+ NOT = { current_debate = drill_exercises }
90
+ }
91
+ has_not_bribe_blocking_debate_active_crownland = {
92
+ NOT = { current_debate = increase_crown_land_share }
93
+ }
94
+ has_not_bribe_blocking_debate_active_government_currency = {
95
+ NOT = { current_debate = election_reform }
96
+ NOT = { current_debate = support_ruling_dynasty }
97
+ NOT = { current_debate = reduce_trade_regulations }
98
+ }
99
+ has_not_bribe_blocking_debate_active_government_reform_progress = {
100
+ NOT = { current_debate = reform_government_act }
101
+ NOT = { current_debate = fund_expansion_of_bureaucracy }
102
+ }
103
+ has_not_bribe_blocking_debate_active_government_power = {
104
+ NOT = { current_debate = extend_militarization_of_the_state }
105
+ }
106
+ has_not_bribe_blocking_debate_active_religious_currency = {
107
+ always = yes
108
+ }
109
+ has_not_bribe_blocking_debate_active_stability = {
110
+ NOT = { current_debate = backing_war_effort }
111
+ }
112
+ has_not_bribe_blocking_debate_active_advisor = {
113
+ NOT = { current_debate = appoint_a_new_prime_minister }
114
+ }
115
+
116
+ #The idea is that an issue which gives a resource should not generate bribes where said resource is paid.
117
+ ##########################################################################################################
118
+ # adm
119
+ # dip
120
+ # mil
121
+ # estate
122
+ # corruption
123
+ # inflation
124
+ # war_exhaustion
125
+ # army_tradition
126
+ # navy_tradition
127
+ # imperial_authority
128
+ # mandate
129
+ # manpower
130
+ # sailors
131
+ # mercantilism
132
+ # prestige
133
+ # treasury
134
+ # army_professionalism
135
+ # crownland
136
+ # government_currency
137
+ # government_reform_progress
138
+ # government_power
139
+ # religious_currency
140
+ # stability
141
+ # advisor
142
+ has_not_bribe_blocking_debate_active = {
143
+ has_not_bribe_blocking_debate_active_$type$ = yes
144
+ }
145
+
146
+ #Tooltip example: "Has passed at least 6? issues in the parliament ([Root.GetNumOfIssuesPassed]?/6?)."
147
+ num_of_issues_passed_with_custom_tooltip = {
148
+ if = {
149
+ limit = {
150
+ OR = {
151
+ has_dlc = "Common Sense"
152
+ has_dlc = "Domination"
153
+ }
154
+ has_parliament = yes
155
+ }
156
+ custom_trigger_tooltip = {
157
+ tooltip = $tooltip$
158
+ check_variable = {
159
+ which = issues_passed
160
+ value = $amount$
161
+ }
162
+ }
163
+ }
164
+ else = {
165
+ [[alternative_trigger]$alternative_trigger$]
166
+ }
167
+ }
168
+
169
+ halved_parliament_bribes = {
170
+ OR = {
171
+ has_country_flag = halved_parliament_bribe_costs
172
+ has_government_attribute = halved_parliament_bribes
173
+ }
174
+ }
175
+
176
+ has_expensive_debate = {
177
+ OR = {
178
+ current_debate = acts_of_impressment
179
+ current_debate = acts_of_high_admiralty
180
+ current_debate = acts_of_maritime_courage
181
+ current_debate = acts_of_naval_professionalism
182
+ current_debate = acts_of_maritime_professionalism
183
+ current_debate = colonial_venture_act
184
+ }
185
+ }
186
+
187
+ has_issue_unlocked = {
188
+ has_country_flag = unlocked_issue_$issue$
189
+ }
190
+
191
+ #Supports the following parliament issues
192
+ ###########################################
193
+ # english_french_act_of_union
194
+ # english_scottish_act_of_union
195
+ has_issue_unlocked_tooltip = {
196
+ custom_trigger_tooltip = {
197
+ tooltip = unlocked_issue_$issue$_tt
198
+ has_country_flag = unlocked_issue_$issue$
199
+ }
200
+ }
201
+
202
+ has_not_enacted_parliament_action = {
203
+ NOT = { has_country_flag = $parliament_action$_flag }
204
+ }
205
+
206
+ #Supports the following parliament actions
207
+ ###########################################
208
+ # french_english_reconciliation_act
209
+ # crush_french_nobles
210
+ # the_bank_charter_act
211
+ has_enacted_parliament_action = {
212
+ custom_trigger_tooltip = {
213
+ tooltip = has_enacted_$parliament_action$_tt
214
+ has_country_flag = $parliament_action$_flag
215
+ }
216
+ }
217
+
218
+ has_reached_seat_threshold = {
219
+ current_size_of_parliament = 40
220
+ }
221
+
222
+ has_passed_all_acts_of_crown_parliamentary_issues = {
223
+ has_enacted_parliament_action = { parliament_action = crown_of_ireland_act }
224
+ has_enacted_parliament_action = { parliament_action = crown_of_iberia_act }
225
+ has_enacted_parliament_action = { parliament_action = crown_of_italy_act }
226
+ has_enacted_parliament_action = { parliament_action = crown_of_the_empire_act }
227
+ }
common/scripted_triggers/02_scripted_triggers_persian_influence.txt ADDED
@@ -0,0 +1,797 @@
1
+ #...at the start, the idea of a diplomatic action which has a scaling cost sounded cool
2
+ #Never again
3
+ has_enough_persian_influence_to_elevate = {
4
+ if = {
5
+ limit = {
6
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 50 }
7
+ }
8
+ if = {
9
+ limit = {
10
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 75 }
11
+ }
12
+ if = {
13
+ limit = {
14
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 87 }
15
+ }
16
+ if = {
17
+ limit = {
18
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 93 }
19
+ }
20
+ if = {
21
+ limit = {
22
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 96 }
23
+ }
24
+ if = {
25
+ limit = {
26
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 98 }
27
+ }
28
+ if = {
29
+ limit = {
30
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 99 }
31
+ }
32
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 99 }
33
+ }
34
+ else = {
35
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 98 }
36
+ }
37
+ }
38
+ else = {
39
+ if = {
40
+ limit = {
41
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 97 }
42
+ }
43
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 97 }
44
+ }
45
+ else = {
46
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 96 }
47
+ }
48
+ }
49
+ }
50
+ else = {
51
+ if = {
52
+ limit = {
53
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 94 }
54
+ }
55
+ if = {
56
+ limit = {
57
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 95 }
58
+ }
59
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 95 }
60
+ }
61
+ else = {
62
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 94 }
63
+ }
64
+ }
65
+ else = {
66
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 93 }
67
+ }
68
+ }
69
+ }
70
+ else = {
71
+ if = {
72
+ limit = {
73
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 90 }
74
+ }
75
+ if = {
76
+ limit = {
77
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 91 }
78
+ }
79
+ if = {
80
+ limit = {
81
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 92 }
82
+ }
83
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 92 }
84
+ }
85
+ else = {
86
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 91 }
87
+ }
88
+ }
89
+ else = {
90
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 90 }
91
+ }
92
+ }
93
+ else = {
94
+ if = {
95
+ limit = {
96
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 88 }
97
+ }
98
+ if = {
99
+ limit = {
100
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 89 }
101
+ }
102
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 89 }
103
+ }
104
+ else = {
105
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 88 }
106
+ }
107
+ }
108
+ else = {
109
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 87 }
110
+ }
111
+ }
112
+ }
113
+ }
114
+ else = {
115
+ if = {
116
+ limit = {
117
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 81 }
118
+ }
119
+ if = {
120
+ limit = {
121
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 84 }
122
+ }
123
+ if = {
124
+ limit = {
125
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 85 }
126
+ }
127
+ if = {
128
+ limit = {
129
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 86 }
130
+ }
131
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 86 }
132
+ }
133
+ else = {
134
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 85 }
135
+ }
136
+ }
137
+ else = {
138
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 84 }
139
+ }
140
+ }
141
+ else = {
142
+ if = {
143
+ limit = {
144
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 82 }
145
+ }
146
+ if = {
147
+ limit = {
148
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 83 }
149
+ }
150
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 83 }
151
+ }
152
+ else = {
153
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 82 }
154
+ }
155
+ }
156
+ else = {
157
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 81 }
158
+ }
159
+ }
160
+ }
161
+ else = {
162
+ if = {
163
+ limit = {
164
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 78 }
165
+ }
166
+ if = {
167
+ limit = {
168
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 79 }
169
+ }
170
+ if = {
171
+ limit = {
172
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 80 }
173
+ }
174
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 80 }
175
+ }
176
+ else = {
177
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 79 }
178
+ }
179
+ }
180
+ else = {
181
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 78 }
182
+ }
183
+ }
184
+ else = {
185
+ if = {
186
+ limit = {
187
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 76 }
188
+ }
189
+ if = {
190
+ limit = {
191
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 77 }
192
+ }
193
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 77 }
194
+ }
195
+ else = {
196
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 76 }
197
+ }
198
+ }
199
+ else = {
200
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 75 }
201
+ }
202
+ }
203
+ }
204
+ }
205
+ }
206
+ else = {
207
+ if = {
208
+ limit = {
209
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 62 }
210
+ }
211
+ if = {
212
+ limit = {
213
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 68 }
214
+ }
215
+ if = {
216
+ limit = {
217
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 71 }
218
+ }
219
+ if = {
220
+ limit = {
221
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 73 }
222
+ }
223
+ if = {
224
+ limit = {
225
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 74 }
226
+ }
227
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 74 }
228
+ }
229
+ else = {
230
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 73 }
231
+ }
232
+ }
233
+ else = {
234
+ if = {
235
+ limit = {
236
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 72 }
237
+ }
238
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 72 }
239
+ }
240
+ else = {
241
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 71 }
242
+ }
243
+ }
244
+ }
245
+ else = {
246
+ if = {
247
+ limit = {
248
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 69 }
249
+ }
250
+ if = {
251
+ limit = {
252
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 70 }
253
+ }
254
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 70 }
255
+ }
256
+ else = {
257
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 69 }
258
+ }
259
+ }
260
+ else = {
261
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 68 }
262
+ }
263
+ }
264
+ }
265
+ else = {
266
+ if = {
267
+ limit = {
268
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 65 }
269
+ }
270
+ if = {
271
+ limit = {
272
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 66 }
273
+ }
274
+ if = {
275
+ limit = {
276
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 67 }
277
+ }
278
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 67 }
279
+ }
280
+ else = {
281
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 66 }
282
+ }
283
+ }
284
+ else = {
285
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 65 }
286
+ }
287
+ }
288
+ else = {
289
+ if = {
290
+ limit = {
291
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 63 }
292
+ }
293
+ if = {
294
+ limit = {
295
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 64 }
296
+ }
297
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 64 }
298
+ }
299
+ else = {
300
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 63 }
301
+ }
302
+ }
303
+ else = {
304
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 62 }
305
+ }
306
+ }
307
+ }
308
+ }
309
+ else = {
310
+ if = {
311
+ limit = {
312
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 56 }
313
+ }
314
+ if = {
315
+ limit = {
316
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 59 }
317
+ }
318
+ if = {
319
+ limit = {
320
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 60 }
321
+ }
322
+ if = {
323
+ limit = {
324
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 61 }
325
+ }
326
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 61 }
327
+ }
328
+ else = {
329
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 60 }
330
+ }
331
+ }
332
+ else = {
333
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 59 }
334
+ }
335
+ }
336
+ else = {
337
+ if = {
338
+ limit = {
339
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 57 }
340
+ }
341
+ if = {
342
+ limit = {
343
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 58 }
344
+ }
345
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 58 }
346
+ }
347
+ else = {
348
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 57 }
349
+ }
350
+ }
351
+ else = {
352
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 56 }
353
+ }
354
+ }
355
+ }
356
+ else = {
357
+ if = {
358
+ limit = {
359
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 53 }
360
+ }
361
+ if = {
362
+ limit = {
363
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 54 }
364
+ }
365
+ if = {
366
+ limit = {
367
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 55 }
368
+ }
369
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 55 }
370
+ }
371
+ else = {
372
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 54 }
373
+ }
374
+ }
375
+ else = {
376
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 53 }
377
+ }
378
+ }
379
+ else = {
380
+ if = {
381
+ limit = {
382
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 51 }
383
+ }
384
+ if = {
385
+ limit = {
386
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 52 }
387
+ }
388
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 52 }
389
+ }
390
+ else = {
391
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 51 }
392
+ }
393
+ }
394
+ else = {
395
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 50 }
396
+ }
397
+ }
398
+ }
399
+ }
400
+ }
401
+ }
402
+ else = {
403
+ if = {
404
+ limit = {
405
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 25 }
406
+ }
407
+ if = {
408
+ limit = {
409
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 37 }
410
+ }
411
+ if = {
412
+ limit = {
413
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 43 }
414
+ }
415
+ if = {
416
+ limit = {
417
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 46 }
418
+ }
419
+ if = {
420
+ limit = {
421
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 48 }
422
+ }
423
+ if = {
424
+ limit = {
425
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 49 }
426
+ }
427
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 49 }
428
+ }
429
+ else = {
430
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 48 }
431
+ }
432
+ }
433
+ else = {
434
+ if = {
435
+ limit = {
436
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 47 }
437
+ }
438
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 47 }
439
+ }
440
+ else = {
441
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 46 }
442
+ }
443
+ }
444
+ }
445
+ else = {
446
+ if = {
447
+ limit = {
448
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 44 }
449
+ }
450
+ if = {
451
+ limit = {
452
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 45 }
453
+ }
454
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 45 }
455
+ }
456
+ else = {
457
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 44 }
458
+ }
459
+ }
460
+ else = {
461
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 43 }
462
+ }
463
+ }
464
+ }
465
+ else = {
466
+ if = {
467
+ limit = {
468
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 40 }
469
+ }
470
+ if = {
471
+ limit = {
472
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 41 }
473
+ }
474
+ if = {
475
+ limit = {
476
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 42 }
477
+ }
478
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 42 }
479
+ }
480
+ else = {
481
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 41 }
482
+ }
483
+ }
484
+ else = {
485
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 40 }
486
+ }
487
+ }
488
+ else = {
489
+ if = {
490
+ limit = {
491
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 38 }
492
+ }
493
+ if = {
494
+ limit = {
495
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 39 }
496
+ }
497
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 39 }
498
+ }
499
+ else = {
500
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 38 }
501
+ }
502
+ }
503
+ else = {
504
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 37 }
505
+ }
506
+ }
507
+ }
508
+ }
509
+ else = {
510
+ if = {
511
+ limit = {
512
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 31 }
513
+ }
514
+ if = {
515
+ limit = {
516
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 34 }
517
+ }
518
+ if = {
519
+ limit = {
520
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 35 }
521
+ }
522
+ if = {
523
+ limit = {
524
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 36 }
525
+ }
526
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 36 }
527
+ }
528
+ else = {
529
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 35 }
530
+ }
531
+ }
532
+ else = {
533
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 34 }
534
+ }
535
+ }
536
+ else = {
537
+ if = {
538
+ limit = {
539
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 32 }
540
+ }
541
+ if = {
542
+ limit = {
543
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 33 }
544
+ }
545
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 33 }
546
+ }
547
+ else = {
548
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 32 }
549
+ }
550
+ }
551
+ else = {
552
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 31 }
553
+ }
554
+ }
555
+ }
556
+ else = {
557
+ if = {
558
+ limit = {
559
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 28 }
560
+ }
561
+ if = {
562
+ limit = {
563
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 29 }
564
+ }
565
+ if = {
566
+ limit = {
567
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 30 }
568
+ }
569
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 30 }
570
+ }
571
+ else = {
572
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 29 }
573
+ }
574
+ }
575
+ else = {
576
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 28 }
577
+ }
578
+ }
579
+ else = {
580
+ if = {
581
+ limit = {
582
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 26 }
583
+ }
584
+ if = {
585
+ limit = {
586
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 27 }
587
+ }
588
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 27 }
589
+ }
590
+ else = {
591
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 26 }
592
+ }
593
+ }
594
+ else = {
595
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 25 }
596
+ }
597
+ }
598
+ }
599
+ }
600
+ }
601
+ else = {
602
+ if = {
603
+ limit = {
604
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 12 }
605
+ }
606
+ if = {
607
+ limit = {
608
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 18 }
609
+ }
610
+ if = {
611
+ limit = {
612
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 21 }
613
+ }
614
+ if = {
615
+ limit = {
616
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 23 }
617
+ }
618
+ if = {
619
+ limit = {
620
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 24 }
621
+ }
622
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 24 }
623
+ }
624
+ else = {
625
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 23 }
626
+ }
627
+ }
628
+ else = {
629
+ if = {
630
+ limit = {
631
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 22 }
632
+ }
633
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 22 }
634
+ }
635
+ else = {
636
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 21 }
637
+ }
638
+ }
639
+ }
640
+ else = {
641
+ if = {
642
+ limit = {
643
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 19 }
644
+ }
645
+ if = {
646
+ limit = {
647
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 20 }
648
+ }
649
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 20 }
650
+ }
651
+ else = {
652
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 19 }
653
+ }
654
+ }
655
+ else = {
656
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 18 }
657
+ }
658
+ }
659
+ }
660
+ else = {
661
+ if = {
662
+ limit = {
663
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 15 }
664
+ }
665
+ if = {
666
+ limit = {
667
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 16 }
668
+ }
669
+ if = {
670
+ limit = {
671
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 17 }
672
+ }
673
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 17 }
674
+ }
675
+ else = {
676
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 16 }
677
+ }
678
+ }
679
+ else = {
680
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 15 }
681
+ }
682
+ }
683
+ else = {
684
+ if = {
685
+ limit = {
686
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 13 }
687
+ }
688
+ if = {
689
+ limit = {
690
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 14 }
691
+ }
692
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 14 }
693
+ }
694
+ else = {
695
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 13 }
696
+ }
697
+ }
698
+ else = {
699
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 12 }
700
+ }
701
+ }
702
+ }
703
+ }
704
+ else = {
705
+ if = {
706
+ limit = {
707
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 6 }
708
+ }
709
+ if = {
710
+ limit = {
711
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 9 }
712
+ }
713
+ if = {
714
+ limit = {
715
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 10 }
716
+ }
717
+ if = {
718
+ limit = {
719
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 11 }
720
+ }
721
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 11 }
722
+ }
723
+ else = {
724
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 10 }
725
+ }
726
+ }
727
+ else = {
728
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 9 }
729
+ }
730
+ }
731
+ else = {
732
+ if = {
733
+ limit = {
734
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 7 }
735
+ }
736
+ if = {
737
+ limit = {
738
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 8 }
739
+ }
740
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 8 }
741
+ }
742
+ else = {
743
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 7 }
744
+ }
745
+ }
746
+ else = {
747
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 6 }
748
+ }
749
+ }
750
+ }
751
+ else = {
752
+ if = {
753
+ limit = {
754
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 3 }
755
+ }
756
+ if = {
757
+ limit = {
758
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 4 }
759
+ }
760
+ if = {
761
+ limit = {
762
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 5 }
763
+ }
764
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 5 }
765
+ }
766
+ else = {
767
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 4 }
768
+ }
769
+ }
770
+ else = {
771
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 3 }
772
+ }
773
+ }
774
+ else = {
775
+ if = {
776
+ limit = {
777
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 1 }
778
+ }
779
+ if = {
780
+ limit = {
781
+ has_global_modifier_value = { which = influence_to_vassal_elevation_cost value = 2 }
782
+ }
783
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 2 }
784
+ }
785
+ else = {
786
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 1 }
787
+ }
788
+ }
789
+ else = {
790
+ has_government_power = { mechanic_type = persian_influence_mechanic power_type = persian_influence value = 0 }
791
+ }
792
+ }
793
+ }
794
+ }
795
+ }
796
+ }
797
+ }